theme.vim 512 B

123456789101112131415161718192021
  1. " Switch to whatever colorscheme you like
  2. "colorscheme onedark
  3. ""colorscheme gruvbox
  4. colorscheme tender
  5. " This chunk is just for spacevim theme
  6. "colorscheme space-vim-dark
  7. "let g:space_vim_dark_background = 235
  8. "color space-vim-dark
  9. " gray comments
  10. hi Comment guifg=#5C6370 ctermfg=59
  11. " this will show italics if your terminal supports that
  12. hi Comment cterm=italic
  13. " checks if your terminal has 24-bit color support
  14. if (has("termguicolors"))
  15. set termguicolors
  16. hi LineNr ctermbg=NONE guibg=NONE
  17. endif