summaryrefslogtreecommitdiff
path: root/.config/nvim/themes/nord.vim
diff options
context:
space:
mode:
authoraktersnurra <grydholm@kth.se>2021-02-15 19:31:04 +0100
committeraktersnurra <grydholm@kth.se>2021-02-15 19:31:04 +0100
commit8ea1f5ef4574c627bc90360b9e22c60226879c5b (patch)
tree6032955b2e45607dba0dba1224128a66f69af17f /.config/nvim/themes/nord.vim
parent8ae928dcb6fc49b805eff0aa0956cd18aa1c3f85 (diff)
some vim commits and zsh
Diffstat (limited to '.config/nvim/themes/nord.vim')
-rw-r--r--.config/nvim/themes/nord.vim17
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