diff options
| author | Thomas Schmucker <ts@its1.de> | 2023-03-27 22:04:45 +0200 |
|---|---|---|
| committer | Thomas Schmucker <ts@its1.de> | 2023-03-27 22:04:45 +0200 |
| commit | 6e65e2a5734f2834043d0cad6fbbbfbabd0eb3a4 (patch) | |
| tree | 1d3aa1b7224c68b1c5561fbf3f5e1e980ca8e0c0 /nvim/plugin-emmet.vim | |
| parent | bc14658651f48cec4909f45319636ceb2207360f (diff) | |
| download | dotfiles-6e65e2a5734f2834043d0cad6fbbbfbabd0eb3a4.tar.gz dotfiles-6e65e2a5734f2834043d0cad6fbbbfbabd0eb3a4.tar.bz2 dotfiles-6e65e2a5734f2834043d0cad6fbbbfbabd0eb3a4.zip | |
Vim plugin emmet
Diffstat (limited to 'nvim/plugin-emmet.vim')
| -rw-r--r-- | nvim/plugin-emmet.vim | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/nvim/plugin-emmet.vim b/nvim/plugin-emmet.vim new file mode 100644 index 0000000..8448b1e --- /dev/null +++ b/nvim/plugin-emmet.vim | |||
| @@ -0,0 +1,12 @@ | |||
| 1 | " https://github.com/mattn/emmet-vim | ||
| 2 | |||
| 3 | " Nur für HTML und CSS Dateien aktivieren | ||
| 4 | let g:user_emmet_install_global = 0 | ||
| 5 | autocmd FileType html,css EmmetInstall | ||
| 6 | |||
| 7 | let g:user_emmet_leader_key='<C-y>' | ||
| 8 | |||
| 9 | "let g:user_emmet_mode='n' "only enable normal mode functions. | ||
| 10 | "let g:user_emmet_mode='inv' "enable all functions, which is equal to | ||
| 11 | "let g:user_emmet_mode='a' "enable all function in all mode. | ||
| 12 | |||
