亚洲av成人无遮挡网站在线观看,少妇性bbb搡bbb爽爽爽,亚洲av日韩精品久久久久久,兔费看少妇性l交大片免费,无码少妇一区二区三区

  免費(fèi)注冊(cè) 查看新帖 |

Chinaunix

  平臺(tái) 論壇 博客 文庫(kù)
最近訪問(wèn)板塊 發(fā)新帖
查看: 2054 | 回復(fù): 0
打印 上一主題 下一主題

VIM colorscheme [復(fù)制鏈接]

論壇徽章:
0
跳轉(zhuǎn)到指定樓層
1 [收藏(0)] [報(bào)告]
發(fā)表于 2009-10-14 18:38 |只看該作者 |倒序?yàn)g覽


       
        文件:vim_config.zip
        大小:7KB
        下載:
下載
       
                               
               
                " Vim color file
"
"  * Nothing should be bold unless it’s very important and should stand out above
"    all other things. Functions/classes are good for this.  (I’m actually using a
"    font/size now that does not support bold.)
"  * Colors should be easy on eyes to stare at for many hours.  The background
"    should be extremely comfortable for your eyes, so not white, and probably not
"    even black.
"  * Todos should stand out just a little (underline looks nice).
"  * Inline comments should stand out less than anything else.
"  * Code “commented out” should be nearly invisible.
"  * But real in-code documentation should have strong emphasis and beauty.
"  * Everything should be differentiated, including identifiers, keywords, 3-4 types
"    of comments, strings, types, constants, conditionals, control structures, and
"    more.
"  * Strings should be a nice color since much documentation should exist in source
"    code as strings (think “”" comments in python or /** in java).
"  * Normal text should be colored either black or white so it is obvious if
"    something is not recognized syntax.
"  * No two used colors should be highly similar.  Beauty is secondary to contrast.
"  * Each language will have some special syntaxes that need specific attention.
"    E.g., py, pl, sh, html, vim, rst, moin, mail, etc.  It’s helpful to have a
"    variety of file types hanging around and fire up your editor on each of them for
"    the scheme you’re developing/modifying.
"  * The scheme should look nearly identical whether being used in an xterm or in a
"    GUI.  E.g., looks the same in vim as gvim.
"  * Really needs to support 256-colors.  There are just too many different
"    highlights to try and cover in 16 colors.
"
set background=dark
hi clear
if exists("syntax_on")
   syntax reset
endif
let g:colors_name = "mycolor"
hi Normal       guibg=#b0b087 ctermfg=black
hi Cursor       guibg=Yellow guifg=NONE ctermfg=white ctermbg=none
hi lCursor      guifg=Yellow guibg=NONE ctermfg=white ctermbg=yellow
hi Search       guifg=#90fff0 guibg=#2050d0     ctermfg=yellow ctermbg=magenta cterm=underline term=underline
hi Folded       guibg=#a0a087 ctermfg=Cyan ctermbg=black cterm=bold term=bold
hi StatusLine   gui=reverse guibg=white     ctermfg=gray ctermbg=black
hi StatusLineNC guifg=black guibg=darkgray gui=none     ctermfg=gray ctermbg=black
hi ModeMsg      gui=none        ctermfg=lightblue
hi MoreMsg      gui=reverse     ctermfg=magenta
hi Question     gui=NONE guifg=#ffff60 guibg=NONE       ctermfg=green
hi Todo         guifg=#d14a14 guibg=#1248d1   ctermfg=red ctermbg=Yellow
hi NonText      guifg=blue ctermfg=darkblue
hi VisualNOS    gui=underline       ctermfg=lightblue ctermbg=white
hi Title        guifg=magenta gui=none ctermfg=magenta cterm=bold
hi SpellBad     ctermfg=245
hi ErrorMsg     guifg=#ffffff guibg=#287eff       ctermfg=white ctermbg=lightblue
hi Visual       guifg=#8080ff guibg=fg      gui=reverse   ctermfg=darkblue ctermbg=white
hi IncSearch    guifg=#b0ffff guibg=#2050d0       ctermfg=darkblue ctermbg=gray
hi SpecialKey   guifg=cyan          ctermfg=darkcyan
hi Directory    guifg=cyan          ctermfg=cyan
hi WarningMsg   guifg=red           ctermfg=darkred
hi WildMenu     guifg=yellow guibg=black    ctermfg=yellow ctermbg=black
hi VertSplit    guifg=black guibg=darkgray gui=none     ctermfg=black ctermbg=gray
hi FoldColumn   guifg=#808080 guibg=#000040         ctermfg=darkgrey ctermbg=black cterm=bold term=bold
hi LineNr   guifg=#90f020           ctermfg=green
" Diff
hi DiffAdd      guibg=lightblue   ctermbg=lightblue  ctermfg=white
hi DiffChange   guibg=darkmagenta ctermbg=darkmagenta ctermfg=white
hi DiffDelete   ctermfg=blue ctermbg=cyan gui=bold guifg=Blue guibg=DarkCyan
hi DiffText cterm=bold ctermbg=red gui=bold guibg=Red ctermfg=white
hi Comment      guifg=#80817c ctermfg=darkgray
hi Constant     guifg=red4 ctermfg=124
hi Special      guifg=purple3 ctermfg=lightblue
hi Identifier   guifg=darkblue ctermfg=lightgreen
hi Statement    guifg=orange4 gui=none ctermfg=darkyellow
hi SpecialStatement guifg=purple2 ctermfg=cyan
hi PreProc      guifg=#0066ff ctermfg=192
hi type     ctermfg=green guifg=#60ff60 gui=none
hi Underlined   guifg=yellow ctermfg=192
" suggested by tigmoid, 2008 Jul 18
hi Pmenu guifg=#c0c0c0 guibg=#404080 ctermbg=magenta ctermfg=white
hi PmenuSel guifg=#c0c0c0 guibg=#2050d0 ctermfg=yellow ctermbg=lightblue
hi PmenuSbar guifg=blue guibg=darkgray
hi PmenuThumb guifg=#c0c0c0
" Html
hi htmlBoldUnderline gui=underline
hi htmlBold     gui=none
hi htmlBoldItalic gui=none
hi htmlBoldUnderlineItalic gui=underline
hi Number       ctermfg=darkred
hi pythonCommentedCode      guifg=#80817c ctermfg=red
hi pythonKingComment      guifg=#d9d6d8 ctermfg=253
hi pythonSmartComment      guifg=#9b7d93 ctermfg=138
hi pythonJavadoc      guifg=#80817c ctermfg=yellow
hi pythonEpydoc      guifg=#80817c ctermfg=brown
hi pythonMajorSection      guifg=white ctermfg=white
hi pythonMinorSection      guifg=white ctermfg=white
hi pythonInfoComment      guifg=#80817c ctermfg=217
hi pythonDisabledComment  guifg=#9d979c  ctermfg=247
hi pythonEolComment      guifg=#80817c ctermfg=blue
hi pythonTripleDirkString       guifg=#056f7f ctermfg=23
hi pythonTripleTickString guifg=#9d979c ctermfg=247
" General Programming
hi Type         guifg=#626b3e gui=none cterm=bold ctermfg=darkgreen
hi String       guifg=#0a1b98 ctermfg=darkblue
hi Function     guifg=#99ff99 gui=bold ctermfg=darkgreen
hi Builtin_Function     guifg=#b9dad9 gui=bold ctermfg=darkgreen
hi Conditional  guifg=#1596bb ctermfg=lightblue
hi Repeat       guifg=green4 ctermfg=cyan
hi Operator     guifg=#c2f555 ctermfg=magenta
hi Include      guifg=yellow1 ctermfg=136
hi Keyword      guifg=yellow guibg=blue ctermfg=yellow
hi Exception    guifg=yellow ctermfg=yellow
hi Define       guifg=yellow ctermfg=yellow
hi Macro        guifg=yellow ctermfg=yellow
hi PreCondit    guifg=brown guibg=yellow
hi StorageClass guifg=yellow ctermfg=yellow
hi Structure    guifg=yellow ctermfg=yellow
hi Typedef      guifg=yellow ctermfg=yellow
hi Tag          guifg=yellow ctermfg=yellow
hi SpecialChar  guifg=yellow ctermfg=yellow
hi Delimiter    guifg=pink ctermfg=yellow
hi SpecialComment guifg=yellow ctermfg=yellow
hi Debug        guifg=yellow ctermfg=yellow
               
               

本文來(lái)自ChinaUnix博客,如果查看原文請(qǐng)點(diǎn):http://blog.chinaunix.net/u1/46672/showart_2070430.html
您需要登錄后才可以回帖 登錄 | 注冊(cè)

本版積分規(guī)則 發(fā)表回復(fù)

  

北京盛拓優(yōu)訊信息技術(shù)有限公司. 版權(quán)所有 京ICP備16024965號(hào)-6 北京市公安局海淀分局網(wǎng)監(jiān)中心備案編號(hào):11010802020122 niuxiaotong@pcpop.com 17352615567
未成年舉報(bào)專(zhuān)區(qū)
中國(guó)互聯(lián)網(wǎng)協(xié)會(huì)會(huì)員  聯(lián)系我們:huangweiwei@itpub.net
感謝所有關(guān)心和支持過(guò)ChinaUnix的朋友們 轉(zhuǎn)載本站內(nèi)容請(qǐng)注明原作者名及出處

清除 Cookies - ChinaUnix - Archiver - WAP - TOP