summaryrefslogtreecommitdiff
path: root/themes/nvcode.vim
diff options
context:
space:
mode:
authorChris <[email protected]>2020-09-04 16:31:01 -0400
committerChris <[email protected]>2020-09-04 16:31:01 -0400
commit73d89f8ca7b127fa49b69ea618df9318711e8876 (patch)
tree9427c1bfcd5b63c06b65c0588b1cbc39e4311fef /themes/nvcode.vim
parent787f9404cb3b359f433d9b1ca201dce39590a103 (diff)
more theme updates
Diffstat (limited to 'themes/nvcode.vim')
-rw-r--r--themes/nvcode.vim14
1 files changed, 14 insertions, 0 deletions
diff --git a/themes/nvcode.vim b/themes/nvcode.vim
new file mode 100644
index 00000000..7a497c33
--- /dev/null
+++ b/themes/nvcode.vim
@@ -0,0 +1,14 @@
+hi Comment cterm=italic
+let g:nvcode_hide_endofbuffer=1
+let g:nvcode_terminal_italics=1
+let g:nvcode_termcolors=256
+
+syntax on
+colorscheme nvcode
+
+
+" checks if your terminal has 24-bit color support
+if (has("termguicolors"))
+ set termguicolors
+ hi LineNr ctermbg=NONE guibg=NONE
+endif