aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorThomas Schmucker <ts@its1.de>2023-03-31 16:37:35 +0200
committerThomas Schmucker <ts@its1.de>2023-03-31 16:37:35 +0200
commitb7b34ea4744205815abba828ec6ec1a82cefdcf1 (patch)
tree5efcefeb0152a446abff30cece918fef550dea02
parent3bd5c5c7cb759e938dad4bf9434ee52d46d26680 (diff)
downloaddotfiles-b7b34ea4744205815abba828ec6ec1a82cefdcf1.tar.gz
dotfiles-b7b34ea4744205815abba828ec6ec1a82cefdcf1.tar.bz2
dotfiles-b7b34ea4744205815abba828ec6ec1a82cefdcf1.zip
Neues Plugin: Auto pairs und bessere Farben im Terminal
-rw-r--r--nvim/plugins.vim12
-rw-r--r--nvim/settings.vim3
2 files changed, 11 insertions, 4 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
8call plug#begin() 8call 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'
17call plug#end() 19call plug#end()
18 20
19" EMMET 21" EMMET
@@ -42,3 +44,7 @@ let g:tagbar_ctags_bin='/usr/local/bin/uctags'
42let g:mundo_right=1 44let g:mundo_right=1
43let g:mundo_width=40 45let g:mundo_width=40
44let g:mundo_preview_height=30 46let g:mundo_preview_height=30
47
48" Autopairs
49let b:autopairs_enabled=1
50
diff --git a/nvim/settings.vim b/nvim/settings.vim
index 7500225..2a582e0 100644
--- a/nvim/settings.vim
+++ b/nvim/settings.vim
@@ -70,6 +70,7 @@ syntax enable
70filetype plugin indent on 70filetype plugin indent on
71 71
72" Farbschema 72" Farbschema
73set termguicolors
73colorscheme habamax 74colorscheme habamax
74highlight MatchParen cterm=bold,underline 75highlight MatchParen gui=bold,underline cterm=bold,underline
75 76