diff options
author | Christian Chiarulli <[email protected]> | 2019-02-10 15:17:03 -0500 |
---|---|---|
committer | Christian Chiarulli <[email protected]> | 2019-02-10 15:17:03 -0500 |
commit | b550a87ceca5449a9687f5861c3e7cb6e7b2bd1a (patch) | |
tree | a5799d2d00f242b2cd197728d70a75515521e2e6 /modules/theme.vim | |
parent | f7b91819c36603dbbbcf5807200facf1d7367223 (diff) |
began new config
Diffstat (limited to 'modules/theme.vim')
-rw-r--r-- | modules/theme.vim | 21 |
1 files changed, 21 insertions, 0 deletions
diff --git a/modules/theme.vim b/modules/theme.vim new file mode 100644 index 00000000..1679b2e4 --- /dev/null +++ b/modules/theme.vim @@ -0,0 +1,21 @@ + +" Switch to whatever colorscheme you like +"colorscheme onedark +"colorscheme gruvbox +colorscheme tender + +" This chunk is just for spacevim theme +"colorscheme space-vim-dark +"let g:space_vim_dark_background = 235 +"color space-vim-dark + +" gray comments +hi Comment guifg=#5C6370 ctermfg=59 +" this will show italics if your terminal supports that +hi Comment cterm=italic + +" checks if your terminal has 24-bit color support +if (has("termguicolors")) + set termguicolors + hi LineNr ctermbg=NONE guibg=NONE +endif |