dotar/vim/settings/solarized.vim

68 lines
2.0 KiB
VimL
Raw Normal View History

if !has("gui_macvim")
set t_Co=256
endif
2012-11-18 01:35:32 +08:00
2012-04-04 17:18:35 +08:00
hi! link txtBold Identifier
2012-04-15 07:41:01 +08:00
hi! link zshVariableDef Identifier
hi! link zshFunction Function
hi! link rubyControl Statement
hi! link rspecGroupMethods rubyControl
hi! link rspecMocks Identifier
hi! link rspecKeywords Identifier
hi! link rubyLocalVariableOrMethod Normal
hi! link rubyStringDelimiter Constant
hi! link rubyString Constant
hi! link rubyAccess Todo
hi! link rubySymbol Identifier
2012-04-21 01:14:47 +08:00
hi! link rubyPseudoVariable Type
hi! link rubyRailsARAssociationMethod Title
hi! link rubyRailsARValidationMethod Title
hi! link rubyRailsMethod Title
2013-02-16 10:22:09 +08:00
hi! link rubyDoBlock Normal
hi! link MatchParen DiffText
hi! link CTagsModule Type
hi! link CTagsClass Type
hi! link CTagsMethod Identifier
2013-01-11 00:24:40 +08:00
hi! link CTagsSingleton Identifier
hi! link javascriptFuncName Type
hi! link javascriptFunction Statement
hi! link javascriptThis Statement
hi! link javascriptParens Normal
hi! link jOperators javascriptStringD
hi! link jId Title
hi! link jClass Title
2012-11-17 02:04:08 +08:00
hi! link NERDTreeFile Constant
hi! link NERDTreeDir Identifier
2013-02-16 10:22:09 +08:00
hi! link sassMixinName Function
hi! link sassDefinition Function
2012-11-29 03:28:45 +08:00
hi! link sassProperty Type
2012-11-21 00:08:19 +08:00
hi! link htmlTagName Type
2012-11-29 03:28:45 +08:00
2012-11-21 00:08:19 +08:00
hi! PreProc gui=bold
2012-11-17 02:04:08 +08:00
" Solarized separators are a little garish.
" This moves separators, comments, and normal
" text into the same color family as the background.
" Using the http://drpeterjones.com/colorcalc/,
" they are now just differently saturated and
" valued riffs on the background color, making
" everything play together just a little more nicely.
2012-11-18 01:35:32 +08:00
hi! VertSplit guifg=#003745 cterm=NONE term=NONE ctermfg=NONE ctermbg=NONE
hi! LineNR guifg=#004C60 gui=bold guibg=#002B36 ctermfg=146
2012-11-17 02:04:08 +08:00
hi! link NonText VertSplit
hi! Normal guifg=#77A5B1
hi! Constant guifg=#00BCE0
hi! Comment guifg=#52737B
hi! link htmlLink Include
2012-11-18 01:35:32 +08:00
hi! CursorLine cterm=NONE gui=NONE
hi! Visual ctermbg=233
2012-11-21 00:08:19 +08:00
hi! Type gui=bold
2013-06-03 12:24:04 +08:00
hi! EasyMotionTarget guifg=#4CE660 gui=bold
" Make sure this file loads itself on top of any other color settings
au VimEnter * so ~/.vim/settings/solarized.vim