summaryrefslogtreecommitdiff
path: root/.config/nvim/themes/dogrun.vim
blob: a100cbd28910af7c9ea694659ccdd7d6f6a82d79 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13

" Prevents the colorscheme from loading a custom bg color.
autocmd ColorScheme * highlight Normal ctermbg=NONE guibg=NONE


syntax on
colorscheme dogrun

" checks if your terminal has 24-bit color support
if (has("termguicolors"))
    set termguicolors
    hi LineNr ctermbg=NONE guibg=NONE
endif