diff options
| author | Syndamia <kamen@syndamia.com> | 2023-06-02 08:10:19 +0300 |
|---|---|---|
| committer | Syndamia <kamen@syndamia.com> | 2023-06-02 08:10:19 +0300 |
| commit | d5151c31464962392efa8f01c9101f3ee7252151 (patch) | |
| tree | ef68036778de57a0627413f9186014a7a8783229 /.vim/startup/pluginsettings.vim | |
| parent | d8e95aba792af861133531348223840c184cf289 (diff) | |
| download | dotfiles-d5151c31464962392efa8f01c9101f3ee7252151.tar dotfiles-d5151c31464962392efa8f01c9101f3ee7252151.tar.gz dotfiles-d5151c31464962392efa8f01c9101f3ee7252151.zip | |
[.vim] Moved startup scripts to .vim/ folder
Diffstat (limited to '.vim/startup/pluginsettings.vim')
| -rw-r--r-- | .vim/startup/pluginsettings.vim | 58 |
1 files changed, 0 insertions, 58 deletions
diff --git a/.vim/startup/pluginsettings.vim b/.vim/startup/pluginsettings.vim deleted file mode 100644 index 72757f5..0000000 --- a/.vim/startup/pluginsettings.vim +++ /dev/null @@ -1,58 +0,0 @@ -" DelimitMate {{{ - let delimitMate_expand_cr = 1 - " Don't autocomplete diamond brackets in HTML (compatibility with closetag plugin) - autocmd FileType html let b:delimitMate_matchpairs='(:),[:],{:}' -" }}} - -" NERDTree {{{ - " Toggle NERDTree with Tab - nmap <Tab> :NERDTreeToggle<CR> - - let NERDTreeCustomOpenArgs = {'file':{'where':'t'}} " Open file in new tab, doesn't work only for double-click - let NERDTreeShowHidden = 1 - let NERDTreeWinPos = "right" - let NERDTreeIgnore = ['\.swp$', '\~$'] " Ignore file, ending with .swp and ~ - - " Do not save blank screens, solves https://github.com/preservim/nerdtree/issues/745 - set sessionoptions-=blank -" }}} - -" Undotree {{{ - " Toggle undotree with F5 - nmap <F5> :UndotreeToggle<CR> - - let g:undotree_WindowLayout = 2 - let g:undotree_ShortIndicators = 1 " e.g. using 'd' instead of 'days' to save some space. - let g:undotree_SetFocusWhenToggle = 1 " if set, let undotree window get focus after being opened, otherwise focus will stay in current window. - let g:undotree_TreeNodeShape = '*' - let g:undotree_DiffCommand = "diff" -" }}} - -" Tabman {{{ - let g:tabman_toggle = '<S-Tab>' - let g:tabman_side = 'right' -" }}} - -" SuperTab {{{ - let g:SuperTabDefaultCompletionType = "context" -" }}} - -" ALE {{{ - map <F2> <ESC>:ALERename<CR> - map gd <ESC>:ALEGoToDefinition<CR> - map gi <ESC>:ALEHover<CR> - map ge <ESC>:ALEDetail<CR> - - set omnifunc=ale#completion#OmniFunc - let g:ale_completion_enabled = 1 - - let g:ale_floating_preview = 1 " Use floating window - let g:ale_floating_window_border = ['│', '─', '╭', '╮', '╯', '╰'] " Nicer borders - - let g:ale_typescript_tsserver_use_global = 1 " Use global tsserver package -" }}} - -" texty-office {{{ - let g:texty_office_executable_directory='/home/kamen/Programming/GitLab-repos/texty-office' - " let g:texty_office_pretty_mode=1 -" }}} |
