blob: ad1c213c34c8c9c277d08b088a5cb051e3584192 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
" Prevents the colorscheme from loading a custom bg color.
autocmd ColorScheme * highlight Normal ctermbg=NONE guibg=NONE
set background=dark
set termguicolors
colorscheme deep-space
syntax on
" checks if your terminal has 24-bit color support
if (has("termguicolors"))
set termguicolors
hi LineNr ctermbg=NONE guibg=NONE
endif
|