Browse Source

various changes

master
Marc 4 years ago
parent
commit
36f6c46d6e
1 changed files with 13 additions and 6 deletions
  1. 19
      .config/nvim/init.vim

19
.config/nvim/init.vim

@ -3,22 +3,29 @@
" Usage :PlugInstall [name] " Usage :PlugInstall [name]
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 'chrisbra/colorizer'
"Plug 'ap/vim-css-color' " doesn't work on all files, but seems faster than chrisbra/colorizer
"Plug 'chrisbra/colorizer'
"Plug 'rrethy/vim-hexokinase', { 'do': 'make hexokinase' } " requires golang, roughly 250mb
"Plug 'norcalli/nvim-colorizer.lua' "requires vim > 0.4
call plug#end() call plug#end()
" themes sind im Unterordner ./colors/ " themes sind im Unterordner ./colors/
colorscheme plastic colorscheme plastic
"colorscheme papercolor-light
"set t_Co=256 "set t_Co=256
set termguicolors set termguicolors
"requires vim > 0.4
"lua require'colorizer'.setup()
"doesnt work "doesnt work
"let g:colorizer_auto_color = 1 "let g:colorizer_auto_color = 1
"workaround: "workaround:
augroup autocolor
autocmd!
autocmd BufEnter,BufLeave * ColorHighlight
augroup END
"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

Loading…
Cancel
Save