feat: added emmet-vim plugin

This commit is contained in:
Vitor Gonçalves 2023-06-13 13:45:25 -03:00
parent ff53e6a818
commit 3559c32997
Signed by: vitorg
GPG Key ID: B90BF113DF56EB41
1 changed files with 8 additions and 0 deletions

View File

@ -15,6 +15,7 @@ set clipboard=unnamedplus " X clipboard to nvim
" plugins
call plug#begin()
Plug 'morhetz/gruvbox' " best theme
Plug 'mattn/emmet-vim' " html and css easing
call plug#end()
" styling
@ -27,6 +28,13 @@ set conceallevel=3
set background=dark
colo gruvbox
" emmet
let g:user_emmet_mode='n' " only on normal mode, thx
let g:user_emmet_install_global = 0
autocmd FileType html,css EmmetInstall
let g:user_emmet_leader_key=','
"" bindings
" leader mapping
nnoremap <SPACE> <Nop>