diff options
| author | Thomas Schmucker <ts@its1.de> | 2023-03-31 16:37:35 +0200 |
|---|---|---|
| committer | Thomas Schmucker <ts@its1.de> | 2023-03-31 16:37:35 +0200 |
| commit | b7b34ea4744205815abba828ec6ec1a82cefdcf1 (patch) | |
| tree | 5efcefeb0152a446abff30cece918fef550dea02 /nvim/plugins.vim | |
| parent | 3bd5c5c7cb759e938dad4bf9434ee52d46d26680 (diff) | |
| download | dotfiles-b7b34ea4744205815abba828ec6ec1a82cefdcf1.tar.gz dotfiles-b7b34ea4744205815abba828ec6ec1a82cefdcf1.tar.bz2 dotfiles-b7b34ea4744205815abba828ec6ec1a82cefdcf1.zip | |
Neues Plugin: Auto pairs und bessere Farben im Terminal
Diffstat (limited to 'nvim/plugins.vim')
| -rw-r--r-- | nvim/plugins.vim | 12 |
1 files changed, 9 insertions, 3 deletions
diff --git a/nvim/plugins.vim b/nvim/plugins.vim index 4d234d8..4c0d9a0 100644 --- a/nvim/plugins.vim +++ b/nvim/plugins.vim | |||
| @@ -6,14 +6,16 @@ endif | |||
| 6 | 6 | ||
| 7 | " vim-plug | 7 | " vim-plug |
| 8 | call plug#begin() | 8 | call plug#begin() |
| 9 | Plug 'LunarWatcher/auto-pairs' | ||
| 10 | "Plug 'alvan/vim-closetag' | ||
| 9 | Plug 'mattn/emmet-vim' | 11 | Plug 'mattn/emmet-vim' |
| 10 | Plug 'romainl/vim-cool' | ||
| 11 | Plug 'preservim/tagbar' | ||
| 12 | Plug 'preservim/nerdtree' | 12 | Plug 'preservim/nerdtree' |
| 13 | Plug 'Xuyuanp/nerdtree-git-plugin' | 13 | Plug 'Xuyuanp/nerdtree-git-plugin' |
| 14 | Plug 'preservim/tagbar' | ||
| 15 | Plug 'romainl/vim-cool' | ||
| 16 | Plug 'simnalamburt/vim-mundo' | ||
| 14 | Plug 'tpope/vim-repeat' | 17 | Plug 'tpope/vim-repeat' |
| 15 | Plug 'tpope/vim-surround' | 18 | Plug 'tpope/vim-surround' |
| 16 | Plug 'simnalamburt/vim-mundo' | ||
| 17 | call plug#end() | 19 | call plug#end() |
| 18 | 20 | ||
| 19 | " EMMET | 21 | " EMMET |
| @@ -42,3 +44,7 @@ let g:tagbar_ctags_bin='/usr/local/bin/uctags' | |||
| 42 | let g:mundo_right=1 | 44 | let g:mundo_right=1 |
| 43 | let g:mundo_width=40 | 45 | let g:mundo_width=40 |
| 44 | let g:mundo_preview_height=30 | 46 | let g:mundo_preview_height=30 |
| 47 | |||
| 48 | " Autopairs | ||
| 49 | let b:autopairs_enabled=1 | ||
| 50 | |||
