diff options
| author | Thomas Schmucker <ts@its1.de> | 2023-03-29 17:56:17 +0200 |
|---|---|---|
| committer | Thomas Schmucker <ts@its1.de> | 2023-03-29 17:56:17 +0200 |
| commit | 5a0b201c499acfefda46943e8e15ae2e0c231e54 (patch) | |
| tree | 6db2ad0dc1d999fb0136095a3a0c63cea7fa4134 /nvim/plugins.vim | |
| parent | 4a8b919c83ba74d8223fccd71c4c76d8418e7309 (diff) | |
| download | dotfiles-5a0b201c499acfefda46943e8e15ae2e0c231e54.tar.gz dotfiles-5a0b201c499acfefda46943e8e15ae2e0c231e54.tar.bz2 dotfiles-5a0b201c499acfefda46943e8e15ae2e0c231e54.zip | |
Vereinfache die Konfiguration
Diffstat (limited to 'nvim/plugins.vim')
| -rw-r--r-- | nvim/plugins.vim | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/nvim/plugins.vim b/nvim/plugins.vim index 02e8846..e432287 100644 --- a/nvim/plugins.vim +++ b/nvim/plugins.vim | |||
| @@ -14,3 +14,19 @@ call plug#begin() | |||
| 14 | Plug 'mattn/emmet-vim' | 14 | Plug 'mattn/emmet-vim' |
| 15 | call plug#end() | 15 | call plug#end() |
| 16 | 16 | ||
| 17 | " EMMET | ||
| 18 | " ----- | ||
| 19 | " https://github.com/mattn/emmet-vim | ||
| 20 | |||
| 21 | " Nur für HTML und CSS Dateien aktivieren | ||
| 22 | let g:user_emmet_install_global = 0 | ||
| 23 | autocmd FileType html,css EmmetInstall | ||
| 24 | |||
| 25 | let g:user_emmet_leader_key='<C-y>' | ||
| 26 | |||
| 27 | "let g:user_emmet_mode='n' "only enable normal mode functions. | ||
| 28 | "let g:user_emmet_mode='inv' "enable all functions, which is equal to | ||
| 29 | "let g:user_emmet_mode='a' "enable all function in all mode. | ||
| 30 | |||
| 31 | |||
| 32 | |||
