LunarVim/themes/nvcode.vim

17 lines
311 B
VimL
Raw Normal View History

2020-09-04 22:31:01 +02:00
hi Comment cterm=italic
let g:nvcode_termcolors=256
syntax on
2020-10-30 06:00:09 +01:00
" colorscheme nord
2020-09-04 22:31:01 +02:00
colorscheme nvcode
2020-10-29 02:59:10 +01:00
" colorscheme onedark
2020-10-31 19:52:31 +01:00
" colorscheme TSnazzy
2020-11-01 17:46:03 +01:00
" colorscheme aurora
2020-09-04 22:31:01 +02:00
" checks if your terminal has 24-bit color support
if (has("termguicolors"))
set termguicolors
hi LineNr ctermbg=NONE guibg=NONE
endif