diff --git a/install/Solarized Dark.itermcolors b/install/Solarized Dark.itermcolors old mode 100644 new mode 100755 index ed31a4a..256742f --- a/install/Solarized Dark.itermcolors +++ b/install/Solarized Dark.itermcolors @@ -131,11 +131,11 @@ Ansi 8 Color Blue Component - 0.15170273184776306 + 0.5859375 Green Component - 0.11783610284328461 + 0.578125 Red Component - 0.0 + 0.51171875 Ansi 9 Color diff --git a/install/com.googlecode.iterm2.plist b/install/com.googlecode.iterm2.plist index ee5a10d..1aac91f 100644 --- a/install/com.googlecode.iterm2.plist +++ b/install/com.googlecode.iterm2.plist @@ -161,11 +161,11 @@ Ansi 8 Color Blue Component - 0.15170273184776306 + 0.5859375 Green Component - 0.11783610284328461 + 0.578125 Red Component - 0.0 + 0.51171875 Ansi 9 Color @@ -438,6 +438,8 @@ MaxVertically + NSColorPanelMode + 6 NSNavLastRootDirectory ~/dotfiles/install NSQuotedKeystrokeBinding @@ -446,10 +448,12 @@ NSScrollAnimationEnabled + NSWindow Frame NSColorPanel + 427 356 214 309 0 0 1920 1058 NSWindow Frame Preferences - 611 285 924 485 0 0 1920 1200 + 2531 171 924 485 1920 0 1920 1080 NSWindow Frame iTerm Window 0 - 1 190 1690 986 0 0 1920 1200 + 2107 149 1130 656 1920 0 1920 1080 New Bookmarks @@ -588,11 +592,11 @@ Ansi 8 Color Blue Component - 0.15170273184776306 + 0.5859375 Green Component - 0.11783610284328461 + 0.578125 Red Component - 0.0 + 0.51171875 Ansi 9 Color @@ -1244,7 +1248,7 @@ SUHasLaunchedBefore SULastCheckTime - 2014-09-18T10:45:17Z + 2014-09-19T12:20:23Z SavePasteHistory Show Toolbelt @@ -1258,7 +1262,7 @@ SmartPlacement SplitPaneDimmingAmount - 0.42883864045143127 + 0.34436598420143127 SwitchTabModifier 6 SwitchWindowModifier diff --git a/vimrc b/vimrc index 099a85e..3796ff2 100644 --- a/vimrc +++ b/vimrc @@ -59,7 +59,7 @@ NeoBundle 'mustache/vim-mustache-handlebars' NeoBundle 'othree/html5.vim' NeoBundle 'pangloss/vim-javascript' NeoBundle 'tpope/vim-git' -NeoBundle 'tpope/vim-haml' +NeoBundle 'tpope/vim-haml' " for sass etc. NeoBundle 'tpope/vim-markdown' @@ -67,7 +67,6 @@ NeoBundle 'tpope/vim-markdown' " Color themes "====================================================================== -NeoBundle 'chriskempson/base16-vim' NeoBundle 'altercation/vim-colors-solarized' @@ -188,15 +187,16 @@ set ch=2 " command window is 2 high set cpo+=$ " Add a $ to the end of a selection set cpo+=J " 2 spaces after a sentence for easier text manupulation +colorscheme solarized +let g:solarized_termtrans = 1 set background=dark " and a dark background of course set t_Co=256 " 256 color terminal FTW -let base16colorspace = 256 -colorscheme base16-solarized -" colorscheme solarized -" let g:solarized_termtrans = 1 + " minor optical fix vor syntastic -" highlight SignColumn ctermbg=8 -" highlight Comment cterm=italic +highlight SignColumn ctermbg=8 + +" italic comments, yeah +highlight Comment cterm=italic "======================================================================