nvim: use colorshemes
This commit is contained in:
parent
a1e9cd412d
commit
cc30567423
1 changed files with 12 additions and 0 deletions
|
@ -7,6 +7,9 @@ endif
|
||||||
|
|
||||||
call plug#begin('~/.local/share/nvim/plugged')
|
call plug#begin('~/.local/share/nvim/plugged')
|
||||||
|
|
||||||
|
" colors
|
||||||
|
Plug 'morhetz/gruvbox'
|
||||||
|
|
||||||
" Nifty stuff
|
" Nifty stuff
|
||||||
Plug 'jamessan/vim-gnupg'
|
Plug 'jamessan/vim-gnupg'
|
||||||
|
|
||||||
|
@ -33,9 +36,18 @@ Plug 'rust-lang/rust.vim', {'for': 'rust'}
|
||||||
Plug 'dag/vim-fish', {'for': 'fish'}
|
Plug 'dag/vim-fish', {'for': 'fish'}
|
||||||
Plug 'LnL7/vim-nix', {'for': 'nix'}
|
Plug 'LnL7/vim-nix', {'for': 'nix'}
|
||||||
Plug 'chikamichi/mediawiki.vim'
|
Plug 'chikamichi/mediawiki.vim'
|
||||||
|
Plug 'cespare/vim-toml'
|
||||||
|
|
||||||
call plug#end()
|
call plug#end()
|
||||||
|
|
||||||
|
" set colors
|
||||||
|
if $COLORTERM == 'truecolor' || $COLORTERM == '24bit'
|
||||||
|
set termguicolors
|
||||||
|
endif
|
||||||
|
|
||||||
|
let g:gruvbox_contrast_dark = "hard"
|
||||||
|
colorscheme gruvbox
|
||||||
|
|
||||||
"" TeX and co stuff
|
"" TeX and co stuff
|
||||||
" disable TeX commands concealing
|
" disable TeX commands concealing
|
||||||
let g:tex_conceal = ''
|
let g:tex_conceal = ''
|
||||||
|
|
Loading…
Add table
Reference in a new issue