diff options
author | Oxbian <got.dacs@slmail.me> | 2023-07-01 10:03:16 +0200 |
---|---|---|
committer | Oxbian <got.dacs@slmail.me> | 2023-07-01 10:03:16 +0200 |
commit | 95f323522716f6b72133fefb615f4ede906dc0f2 (patch) | |
tree | 3c03fd3896ffb1b1d099ffc71f1a660a6b45adfb /.vim/plugins.vim | |
parent | 450cea46e25d4b14400e6ad912695b56664bd41a (diff) | |
download | vimrc-95f323522716f6b72133fefb615f4ede906dc0f2.tar.gz vimrc-95f323522716f6b72133fefb615f4ede906dc0f2.zip |
Adding LSP keybinds & doc
Diffstat (limited to '.vim/plugins.vim')
-rw-r--r-- | .vim/plugins.vim | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/.vim/plugins.vim b/.vim/plugins.vim index bda960d..a98a9d2 100644 --- a/.vim/plugins.vim +++ b/.vim/plugins.vim @@ -20,6 +20,7 @@ Plug 'vim-airline/vim-airline' " Vim statusline Plug 'preservim/nerdtree' " Filetree in vim Plug 'ryanoasis/vim-devicons' " Icons for vim Plug 'tiagofumo/vim-nerdtree-syntax-highlight' " Syntax in nerdtree for files extension +Plug 'liuchengxu/vim-which-key' " Show leader mapping cheatsheet " Git integration Plug 'airblade/vim-gitgutter' " Git diff @@ -78,3 +79,5 @@ autocmd BufEnter * if bufname('#') =~ 'NERD_tree_\d\+' && bufname('%') !~ 'NERD_ " If more than one window and previous buffer was NERDTree, go back to it. autocmd BufEnter * if bufname('#') =~# "^NERD_tree_" && winnr('$') > 1 | b# | endif + + |