[nvim] Add CSS colours, change highlighting
This commit is contained in:
parent
a85118f40e
commit
8e16b4b8b3
1 changed files with 10 additions and 3 deletions
|
@ -193,6 +193,7 @@ call plug#begin('~/.config/nvim/plug')
|
||||||
"Plug 'neovimhaskell/haskell-vim', { 'for': 'haskell' } " included in vim-polyglot
|
"Plug 'neovimhaskell/haskell-vim', { 'for': 'haskell' } " included in vim-polyglot
|
||||||
"Plug 'LaTeX-Box-Team/LaTeX-Box', { 'for': 'tex' } " 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 'rust-lang/rust.vim', { 'for': 'rust' } " included in vim-polyglot
|
||||||
|
Plug 'ap/vim-css-color' " CSS color names
|
||||||
|
|
||||||
" C/C++
|
" C/C++
|
||||||
"Plug 'vim-scripts/c.vim', { 'for': ['c', 'cpp', 'objc'] } " various IDE-like C features
|
"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
|
let g:one_allow_italics = 1
|
||||||
colorscheme one
|
colorscheme one
|
||||||
set background=dark
|
set background=dark
|
||||||
hi Normal guibg=NONE
|
hi Normal guibg=NONE ctermbg=NONE
|
||||||
hi SpellBad guibg=NONE
|
hi SpellBad guibg=NONE ctermbg=NONE
|
||||||
|
hi Comment guifg=#888888
|
||||||
hi link Whitespace Conceal
|
hi link Whitespace Conceal
|
||||||
|
hi CursorLine guibg=NONE ctermbg=NONE
|
||||||
|
hi CursorLineNr guibg=NONE ctermbg=NONE
|
||||||
|
|
||||||
" Haskell {{{2
|
" Haskell {{{2
|
||||||
" ------------
|
" ------------
|
||||||
|
@ -287,6 +291,9 @@ let g:vim_markdown_conceal = 0
|
||||||
" CSV.vim {{{2
|
" CSV.vim {{{2
|
||||||
" ------------
|
" ------------
|
||||||
|
|
||||||
|
" CSS colors {{{2
|
||||||
|
" ---------------
|
||||||
|
|
||||||
" Doxygen {{{2
|
" Doxygen {{{2
|
||||||
" ------------
|
" ------------
|
||||||
nnoremap <leader>df :Dox<CR>
|
nnoremap <leader>df :Dox<CR>
|
||||||
|
@ -491,7 +498,7 @@ let g:gutentags_cache_dir = '~/.cache/gutentag'
|
||||||
" Airline {{{2
|
" Airline {{{2
|
||||||
" ------------
|
" ------------
|
||||||
let g:airline_powerline_fonts=1
|
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#ycm#enabled=1
|
||||||
let g:airline#extensions#tabline#enabled=1
|
let g:airline#extensions#tabline#enabled=1
|
||||||
let g:airline#extensions#ale#enabled=1
|
let g:airline#extensions#ale#enabled=1
|
||||||
|
|
Loading…
Reference in a new issue