Colorscheme switcher for Vim
- Change colorschemes interactive.
:SwitchColorscheme
:SwitchBackGround
Like VS Code, you can change Vim's Colorscheme .
You can select the Color scheme using J or K or the cursor keys.
You can then confirm your selection with the Enter or Spacebar.
g:colorschemes_settings#use_default_colorschemes
Setting this flag to v: false will prevent the standard color scheme from being loaded
g:colorschemes_settings#rc_file_path
Specifies where the settings are saved when the colorscheme is changed
This path is not automatically expanded
Note that the file will be overwritten
Example
let g:colorscheme_settings#colorrc_path = expand('~/.vim/colorrc.vim')
If you want to set option when Vim starts. write this code to your .vimrc
let s:colorrcpath = expand('~/.vim/colorrc.vim')
if filereadable(s:colorrcpath)
execute "source" s:colorrcpath
endif
MIT
Kota Kato a.k.a kat0h