aboutsummaryrefslogtreecommitdiff
path: root/vimrc-common
diff options
context:
space:
mode:
authorMax Christian Pohle2019-10-08 22:36:24 +0200
committerMax Christian Pohle2019-10-08 22:36:24 +0200
commiteccf27e61a9a2864f25a1bebb6383a30efab83d3 (patch)
treeb456bb073a34e75cefdd926294433bb34da1956e /vimrc-common
parentbd4fa1331b6543ddee67324ade50419f2c036105 (diff)
downloadvim-eccf27e61a9a2864f25a1bebb6383a30efab83d3.tar.bz2
vim-eccf27e61a9a2864f25a1bebb6383a30efab83d3.zip
Refactord color scheme and statusbar
Diffstat (limited to 'vimrc-common')
-rw-r--r--vimrc-common12
1 files changed, 6 insertions, 6 deletions
diff --git a/vimrc-common b/vimrc-common
index 4b00369..77ebbdf 100644
--- a/vimrc-common
+++ b/vimrc-common
@@ -64,7 +64,7 @@ if has("multi_byte")
64 set fillchars= | " initialize empty fillchars 64 set fillchars= | " initialize empty fillchars
65 set listchars= | " initialize empty listchars 65 set listchars= | " initialize empty listchars
66 66
67 if &term == "linux" 67 if &term ==# 'linux'
68 set fillchars+=vert:\│ | " cool vertical split char 68 set fillchars+=vert:\│ | " cool vertical split char
69 else 69 else
70 set fillchars+=vert:\║ | " cool vertical split char 70 set fillchars+=vert:\║ | " cool vertical split char
@@ -143,11 +143,11 @@ set wildmode=longest:full | " do not preselect any entry and show all possib
143" set dictionary=/usr/share/dict/cracklib-small 143" set dictionary=/usr/share/dict/cracklib-small
144set complete+=d | " scan current and included files for defined name or macro 144set complete+=d | " scan current and included files for defined name or macro
145set complete+=i | " scan current and included files for completions 145set complete+=i | " scan current and included files for completions
146set complete+=k " make default completer <C-N> respect the dictionary 146set complete+=k | " make default completer <C-N> respect the dictionary
147set complete-=u " scan current and included files 147set complete-=u | " scan current and included files
148set complete+=i " scan current and included files 148set complete+=i | " scan current and included files
149set complete+=d " scan current and included files for defined name or macro 149set complete+=d | " scan current and included files for defined name or macro
150" set complete=d " scan current and included files for defined name or macro 150" set complete=d | " scan current and included files for defined name or macro
151set completeopt+=noinsert | " Do not insert any text for a match until the user selects one 151set completeopt+=noinsert | " Do not insert any text for a match until the user selects one
152set completeopt+=noselect | " Do not select a completion from the menu, let the user do that 152set completeopt+=noselect | " Do not select a completion from the menu, let the user do that
153set tagcase=match | " tagcase match, because we mostly use ^] to jump around and that variant respects the upper/lower case [followscs, followic, match, ignore] 153set tagcase=match | " tagcase match, because we mostly use ^] to jump around and that variant respects the upper/lower case [followscs, followic, match, ignore]
..