| 123456789101112131415161718192021 | 
" Switch to whatever colorscheme you like"colorscheme onedark""colorscheme gruvboxcolorscheme tender" This chunk is just for spacevim theme"colorscheme space-vim-dark"let g:space_vim_dark_background = 235"color space-vim-dark" gray commentshi Comment guifg=#5C6370 ctermfg=59" this will show italics if your terminal supports thathi Comment cterm=italic" checks if your terminal has 24-bit color supportif (has("termguicolors"))    set termguicolors    hi LineNr ctermbg=NONE guibg=NONEendif
 |