summaryrefslogtreecommitdiff
path: root/general/theme.vim
diff options
context:
space:
mode:
authorChristian Chiarulli <[email protected]>2021-03-14 15:10:28 -0400
committerGitHub <[email protected]>2021-03-14 15:10:28 -0400
commit0dc3c5030b778d5256cad5d9529e9ecf7fbfb233 (patch)
tree420e44f62d95d138eec36baa4d1bd5b6c9390ae6 /general/theme.vim
parentd002b0419a8621c5575c14119d0b8d9c4a7a44a0 (diff)
The Lua Journey Begins...
Diffstat (limited to 'general/theme.vim')
-rw-r--r--general/theme.vim22
1 files changed, 0 insertions, 22 deletions
diff --git a/general/theme.vim b/general/theme.vim
deleted file mode 100644
index 5a738f8a..00000000
--- a/general/theme.vim
+++ /dev/null
@@ -1,22 +0,0 @@
-hi Comment cterm=italic
-let g:nvcode_termcolors=256
-
-syntax on
-" colorscheme nord
-colorscheme nvcode
-" colorscheme onedark
-" colorscheme TSnazzy
-" colorscheme aurora
-
-
-" checks if your terminal has 24-bit color support
-if (has("termguicolors"))
- set termguicolors
- hi LineNr ctermbg=NONE guibg=NONE
-endif
-
-" Change this when you know where i3 will be
-aug i3config_ft_detection
- au!
- au BufNewFile,BufRead ~/.config/i3/config set filetype=i3config
-aug end