diff options
author | Oxbian <got.dacs@slmail.me> | 2023-07-24 14:35:15 +0200 |
---|---|---|
committer | Oxbian <got.dacs@slmail.me> | 2023-07-24 14:35:15 +0200 |
commit | 64e1367209edfa7828cb6dabe7c6f0582568cf37 (patch) | |
tree | d941dc250c5ddfda948cebd40bc80cdb74120963 /.vim/plugins.vim | |
parent | 2c003129d57830d305de03e6e35972ad40084fed (diff) | |
download | vimrc-64e1367209edfa7828cb6dabe7c6f0582568cf37.tar.gz vimrc-64e1367209edfa7828cb6dabe7c6f0582568cf37.zip |
Adding emmet extension for HTML
Diffstat (limited to '.vim/plugins.vim')
-rw-r--r-- | .vim/plugins.vim | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/.vim/plugins.vim b/.vim/plugins.vim index 53c76aa..abaf397 100644 --- a/.vim/plugins.vim +++ b/.vim/plugins.vim @@ -35,6 +35,9 @@ Plug 'mattn/vim-lsp-settings' " Automatic vim-lsp installation Plug 'prabirshrestha/asyncomplete.vim' " Autocompletion Plug 'prabirshrestha/asyncomplete-lsp.vim' " Autocompletion & connection with vim-lsp +" Language +Plug 'mattn/emmet-vim', { 'for': ['html', 'css', 'js', 'vue'] } + call plug#end() filetype plugin indent on " Allow filetype detection, plugins, indentation @@ -140,3 +143,6 @@ let g:which_key_map.l = { \ 'df' : 'format document', \ } +" Emmet +let g:user_emmet_leader_key='é' + |