aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--nvim/keymaps.vim1
-rw-r--r--nvim/plugins.vim8
2 files changed, 4 insertions, 5 deletions
diff --git a/nvim/keymaps.vim b/nvim/keymaps.vim
index 5025be1..6d9b818 100644
--- a/nvim/keymaps.vim
+++ b/nvim/keymaps.vim
@@ -26,3 +26,4 @@ vnoremap <A-k> :m '<-2<CR>gv=gv
26map j gj 26map j gj
27map k gk 27map k gk
28 28
29nnoremap <F4> :NERDTreeToggle<CR>
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