theme.vim 463 B

12345678910111213141516171819202122
  1. hi Comment cterm=italic
  2. let g:nvcode_termcolors=256
  3. syntax on
  4. " colorscheme nord
  5. colorscheme nvcode
  6. " colorscheme onedark
  7. " colorscheme TSnazzy
  8. " colorscheme aurora
  9. " checks if your terminal has 24-bit color support
  10. if (has("termguicolors"))
  11. set termguicolors
  12. hi LineNr ctermbg=NONE guibg=NONE
  13. endif
  14. " Change this when you know where i3 will be
  15. aug i3config_ft_detection
  16. au!
  17. au BufNewFile,BufRead ~/.config/i3/config set filetype=i3config
  18. aug end