diff options
Diffstat (limited to '.config/nvim/themes/nord.vim')
-rw-r--r-- | .config/nvim/themes/nord.vim | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/.config/nvim/themes/nord.vim b/.config/nvim/themes/nord.vim new file mode 100644 index 0000000..ec15ad6 --- /dev/null +++ b/.config/nvim/themes/nord.vim @@ -0,0 +1,17 @@ +" Prevents the colorscheme from loading a custom bg color. +autocmd ColorScheme * highlight Normal ctermbg=NONE guibg=NONE + +hi Comment cterm=italic +let g:onedark_hide_endofbuffer=1 +let g:onedark_terminal_italics=1 +let g:onedark_termcolors=256 + +syntax on +colorscheme nord + + +" checks if your terminal has 24-bit color support +if (has("termguicolors")) + set termguicolors + hi LineNr ctermbg=NONE guibg=NONE +endif |