summaryrefslogtreecommitdiff
path: root/.config/nvim/themes/nord.vim
blob: a9c980f777a136beacba9f36c7f3a95b2d67df95 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
" Prevents the colorscheme from loading a custom bg color.
autocmd ColorScheme * highlight Normal ctermbg=NONE guibg=NONE


hi Comment cterm=italic

syntax on
colorscheme nord

" checks if your terminal has 24-bit color support
if (has("termguicolors"))
    let &t_8f="\<Esc>[38;2;%lu;%lu;%lum"
    let &t_8b="\<Esc>[48;2;%lu;%lu;%lum"
    set termguicolors
    hi LineNr ctermbg=NONE guibg=NONE
    hi SignColumn ctermbg=NONE guibg=NONE
endif