- Your terminal must support 256color (iterm2)
-
py-darcula (fits airline theme: darcula)
- A theme reminiscent of pyCharm darcula theme
-
xcode-default (fits airline theme: edocx)
- A theme reminiscent of xcode default theme
- edocx (fits vim colorscheme: xcode-default)
- darcula (fits vim colorscheme: py-darcula)
Basic install
mkdir ~/.vim
git clone https://github.com/cohlin/vim-colorschemes.git ~/.vim
if you use vim + pathogen
cd ~/.vim
git submodule add https://github.com/cohlin/vim-colorschemes.git bundle/vim-colorschemes
if you use vim + vundle
" add to .vimrc
Plugin 'cohlin/vim-colorschemes'
:PluginInstall
Change the colorscheme in your .vimrc
:
with py-darcula theme:
" Airline theme
let g:airline_theme = "darcula"
" Vim colorscheme
colorscheme py-darcula
with xcode-default theme:
" Airline theme
let g:airline_theme = "edocx"
" Vim colorscheme
colorscheme xcode-default