Merge commit '068d708cf2824672044e67949a2b9116ba2be81c' as 'vim'

This commit is contained in:
murgi
2017-04-12 10:07:28 +02:00
200 changed files with 28804 additions and 0 deletions

7
vim/color.vim Normal file
View File

@@ -0,0 +1,7 @@
let num = 255
while num >= 0
exec 'hi col_'.num.' ctermbg='.num.' ctermfg=white'
exec 'syn match col_'.num.' "ctermbg='.num.':...." containedIn=ALL'
call append(0, 'ctermbg='.num.':....')
let num = num - 1
endwhile