This is a series of colorschemes for vim/neovim text editor.
All of those colorschemes support lightline.vim and airline.vim
If you want to see my personal configuration of neovim visit my github-repo
These colorschemes no longer support cterm colors.
Plug this theme with your package manager inside your plugins.vim
.
Plugin `sampixel/mood-colors`
Install with :PluginInstall
Plug 'sampixel/mood-colors'
Install with :PlugInstall
NeoBundle `sampixel/mood-colors`
Install with :NeoBundleInstall
Or you can even clone this repo inside your ~/.config/nvim/autoload/plugged
folder
git clone https://github.com/sampixel/mood-colors
Refresh your vim environment with :source $MYVIMRC
To be able to see the changes in your vim environment you need to implement the following lines inside your .vimrc
or init.vim
" enable syntax
syntax enable
" enable termguicolors
if (has("termguicolors"))
set termguicolors
endif
If you want to implement color support for tablines and statusline colors, add the following line to your .vimrc
or init.vim
" list of available colorschemes
" darkenvim - wintenvim - colorfull - luascheme - violetelo - devtool
" set airline theme
let g:airline_theme = "violetelo"
" set lightline theme
let g:lightline = {"colorscheme": "violetelo"}
" set colorscheme name
colorscheme violetelo