From 744b93be5c1ec67c13c67f4d74aa887a9fb6ec51 Mon Sep 17 00:00:00 2001 From: Fabio Gallonetto Date: Sun, 7 Apr 2013 16:38:25 +0100 Subject: [PATCH] Add solarized theme to console vim --- vim/plugin/settings/yadr-appearance.vim | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) diff --git a/vim/plugin/settings/yadr-appearance.vim b/vim/plugin/settings/yadr-appearance.vim index 4c71ef2..15a00c8 100644 --- a/vim/plugin/settings/yadr-appearance.vim +++ b/vim/plugin/settings/yadr-appearance.vim @@ -1,12 +1,13 @@ " Make it beautiful - colors and fonts + +" http://ethanschoonover.com/solarized/vim-colors-solarized +colorscheme solarized +set background=dark + if has("gui_running") "tell the term has 256 colors set t_Co=256 - " http://ethanschoonover.com/solarized/vim-colors-solarized - colorscheme solarized - set background=dark - " Show tab number (useful for Cmd-1, Cmd-2.. mapping) " For some reason this doesn't work as a regular set command, " (the numbers don't show up) so I made it a VimEnter event