|
@ -4,6 +4,7 @@ |
|
|
call plug#begin() |
|
|
call plug#begin() |
|
|
Plug 'itchyny/lightline.vim' |
|
|
Plug 'itchyny/lightline.vim' |
|
|
"Plug 'ap/vim-css-color' " doesn't work on all files |
|
|
"Plug 'ap/vim-css-color' " doesn't work on all files |
|
|
|
|
|
Plug 'chrisbra/colorizer' |
|
|
call plug#end() |
|
|
call plug#end() |
|
|
|
|
|
|
|
|
" themes sind im Unterordner ./colors/ |
|
|
" themes sind im Unterordner ./colors/ |
|
@ -11,6 +12,14 @@ colorscheme plastic |
|
|
"set t_Co=256 |
|
|
"set t_Co=256 |
|
|
set termguicolors |
|
|
set termguicolors |
|
|
|
|
|
|
|
|
|
|
|
"doesnt work |
|
|
|
|
|
"let g:colorizer_auto_color = 1 |
|
|
|
|
|
"workaround: |
|
|
|
|
|
augroup autocolor |
|
|
|
|
|
autocmd! |
|
|
|
|
|
autocmd BufEnter,BufLeave * ColorHighlight |
|
|
|
|
|
augroup END |
|
|
|
|
|
|
|
|
set number " add line numbers |
|
|
set number " add line numbers |
|
|
set nocompatible " disable compatibility to vi |
|
|
set nocompatible " disable compatibility to vi |
|
|
set tabstop=4 " number of columns by tab |
|
|
set tabstop=4 " number of columns by tab |
|
|