aboutsummaryrefslogtreecommitdiff
path: root/nvim/plugins.vim
diff options
context:
space:
mode:
authorThomas Schmucker <ts@its1.de>2023-03-29 21:28:10 +0200
committerThomas Schmucker <ts@its1.de>2023-03-29 21:28:10 +0200
commit6bcf122bdb302ce8e6173fa146a241ceb4734650 (patch)
tree23dd9fedbcdcfa3144226b243be3e2044ed17ff7 /nvim/plugins.vim
parent5a0b201c499acfefda46943e8e15ae2e0c231e54 (diff)
downloaddotfiles-6bcf122bdb302ce8e6173fa146a241ceb4734650.tar.gz
dotfiles-6bcf122bdb302ce8e6173fa146a241ceb4734650.tar.bz2
dotfiles-6bcf122bdb302ce8e6173fa146a241ceb4734650.zip
NerdTree hinzugefügt
Diffstat (limited to 'nvim/plugins.vim')
-rw-r--r--nvim/plugins.vim8
1 files changed, 3 insertions, 5 deletions
diff --git a/nvim/plugins.vim b/nvim/plugins.vim
index e432287..7021a0a 100644
--- a/nvim/plugins.vim
+++ b/nvim/plugins.vim
@@ -6,12 +6,11 @@ if empty(glob(data_dir . '/autoload/plug.vim'))
6endif 6endif
7 7
8call plug#begin() 8call plug#begin()
9 Plug 'mattn/emmet-vim'
9 Plug 'romainl/vim-cool' 10 Plug 'romainl/vim-cool'
10 11 Plug 'scrooloose/nerdtree'
11 Plug 'tpope/vim-surround'
12 Plug 'tpope/vim-repeat' 12 Plug 'tpope/vim-repeat'
13 13 Plug 'tpope/vim-surround'
14 Plug 'mattn/emmet-vim'
15call plug#end() 14call plug#end()
16 15
17" EMMET 16" EMMET
@@ -29,4 +28,3 @@ let g:user_emmet_leader_key='<C-y>'
29"let g:user_emmet_mode='a' "enable all function in all mode. 28"let g:user_emmet_mode='a' "enable all function in all mode.
30 29
31 30
32