[nvim] Add CSS colours, change highlighting

This commit is contained in:
M1dgard 2018-11-04 00:20:58 +01:00
parent a85118f40e
commit 8e16b4b8b3
Signed by untrusted user who does not match committer: midgard
GPG key ID: 511C112F1331BBB4

View file

@ -193,6 +193,7 @@ call plug#begin('~/.config/nvim/plug')
"Plug 'neovimhaskell/haskell-vim', { 'for': 'haskell' } " included in vim-polyglot
"Plug 'LaTeX-Box-Team/LaTeX-Box', { 'for': 'tex' } " included in vim-polyglot
"Plug 'rust-lang/rust.vim', { 'for': 'rust' } " included in vim-polyglot
Plug 'ap/vim-css-color' " CSS color names
" C/C++
"Plug 'vim-scripts/c.vim', { 'for': ['c', 'cpp', 'objc'] } " various IDE-like C features
@ -254,9 +255,12 @@ set cursorline
let g:one_allow_italics = 1
colorscheme one
set background=dark
hi Normal guibg=NONE
hi SpellBad guibg=NONE
hi Normal guibg=NONE ctermbg=NONE
hi SpellBad guibg=NONE ctermbg=NONE
hi Comment guifg=#888888
hi link Whitespace Conceal
hi CursorLine guibg=NONE ctermbg=NONE
hi CursorLineNr guibg=NONE ctermbg=NONE
" Haskell {{{2
" ------------
@ -287,6 +291,9 @@ let g:vim_markdown_conceal = 0
" CSV.vim {{{2
" ------------
" CSS colors {{{2
" ---------------
" Doxygen {{{2
" ------------
nnoremap <leader>df :Dox<CR>
@ -491,7 +498,7 @@ let g:gutentags_cache_dir = '~/.cache/gutentag'
" Airline {{{2
" ------------
let g:airline_powerline_fonts=1
let g:airline_theme='one'
let g:airline_theme='minimalist'
let g:airline#extensions#ycm#enabled=1
let g:airline#extensions#tabline#enabled=1
let g:airline#extensions#ale#enabled=1