mirror of
https://github.com/prurigro/darkcloud-nvimconfig.git
synced 2024-11-09 15:06:38 -05:00
Made a few tweaks to the colours, commented out lines that haven't had values set for them yet (mostly language-specific syntax) and added another couple of entries for the 8 colour fallback
This commit is contained in:
parent
039b925e15
commit
188e1f62a4
1 changed files with 28 additions and 29 deletions
|
@ -261,32 +261,30 @@ let colors_name = "darkcloud"
|
||||||
endfun
|
endfun
|
||||||
"}}}
|
"}}}
|
||||||
|
|
||||||
"COLOR SETTINGS:
|
|
||||||
if !exists("g:colorscheme_use_lowcolor_black") || g:colorscheme_use_lowcolor_black
|
if !exists("g:colorscheme_use_lowcolor_black") || g:colorscheme_use_lowcolor_black
|
||||||
let s:termBlack = "Black"
|
let s:termBlack = "Black"
|
||||||
else
|
else
|
||||||
let s:termBlack = "Grey"
|
let s:termBlack = "Grey"
|
||||||
endif
|
endif
|
||||||
|
|
||||||
|
"COLOR SETTINGS:
|
||||||
"format: (name ,fg ,bg ,style ,lowcolor-fg,lowcolor-bg)
|
"format: (name ,fg ,bg ,style ,lowcolor-fg,lowcolor-bg)
|
||||||
"exmple: ("Sel","000000","f0f0f0","italic,bold",s:termBlack,"White")
|
"exmple: ("Sel","000000","f0f0f0","italic,bold",s:termBlack,"White")
|
||||||
|
|
||||||
|
"Default foreground and background
|
||||||
call s:X("Normal","bcbcbc","262626","","White",s:termBlack)
|
call s:X("Normal","bcbcbc","262626","","White",s:termBlack)
|
||||||
|
|
||||||
if version >= 700
|
call s:X("Pmenu","303030","87d7ff","","Grey","LightBlue")
|
||||||
" Auto-completion
|
call s:X("PmenuSel","bcbcbc","4e4e4e","","White","Black")
|
||||||
call s:X("Pmenu","303030","87d7ff","","Grey","LightBlue")
|
|
||||||
call s:X("PmenuSel","bcbcbc","4e4e4e","","White","Black")
|
|
||||||
|
|
||||||
call s:X("CursorLine","","3a3a3a","bold","",s:termBlack)
|
call s:X("CursorLine","","3a3a3a","bold","",s:termBlack)
|
||||||
call s:X("CursorLineNr","000000","87d7ff","bold",s:termBlack,"Blue")
|
call s:X("CursorLineNr","000000","87d7ff","bold",s:termBlack,"Blue")
|
||||||
call s:X("CursorColumn","","3a3a3a","","",s:termBlack)
|
call s:X("CursorColumn","","3a3a3a","","",s:termBlack)
|
||||||
call s:X("MatchParen","","87d7ff","bold","","Blue")
|
call s:X("MatchParen","","87d7ff","bold","","Blue")
|
||||||
|
|
||||||
call s:X("TabLine","","000000","","",s:termBlack)
|
call s:X("TabLine","","000000","","",s:termBlack)
|
||||||
call s:X("TabLineFill","","000000","","",s:termBlack)
|
call s:X("TabLineFill","","000000","","",s:termBlack)
|
||||||
call s:X("TabLineSel","000000","ffffff","",s:termBlack,"White")
|
call s:X("TabLineSel","000000","ffffff","",s:termBlack,"White")
|
||||||
endif
|
|
||||||
|
|
||||||
call s:X("Visual","","3a3a3a","","",s:termBlack)
|
call s:X("Visual","","3a3a3a","","",s:termBlack)
|
||||||
call s:X("Cursor","000000","ffff00","underline",s:termBlack,"Yellow")
|
call s:X("Cursor","000000","ffff00","underline",s:termBlack,"Yellow")
|
||||||
|
@ -323,10 +321,11 @@ call s:X("SpecialKey","000000","","",s:termBlack,"")
|
||||||
call s:X("Search","ffffff","d75f5f","bold","White","Red")
|
call s:X("Search","ffffff","d75f5f","bold","White","Red")
|
||||||
call s:X("IncSearch","87d7ff","626262","standout","Blue","Grey")
|
call s:X("IncSearch","87d7ff","626262","standout","Blue","Grey")
|
||||||
call s:X("Directory","ffff00","","","Yellow","")
|
call s:X("Directory","ffff00","","","Yellow","")
|
||||||
|
call s:X("Question","ffaf00","","","","")
|
||||||
|
call s:X("ExtraWhitespace","262626","","standout",s:termBlack,"")
|
||||||
call s:X("ErrorMsg","5f0000","ffaf00","bold","DarkRed","Yellow")
|
call s:X("ErrorMsg","5f0000","ffaf00","bold","DarkRed","Yellow")
|
||||||
hi! link Error ErrorMsg
|
hi! link Error ErrorMsg
|
||||||
hi! link MoreMsg Special
|
hi! link MoreMsg Special
|
||||||
call s:X("Question","ffaf00","","","","")
|
|
||||||
|
|
||||||
"spell checking
|
"spell checking
|
||||||
call s:X("SpellBad","bcbcbc","262626","undercurl","White",s:termBlack)
|
call s:X("SpellBad","bcbcbc","262626","undercurl","White",s:termBlack)
|
||||||
|
@ -344,32 +343,32 @@ call s:X("DiffText","000000","626262","bold",s:termBlack,"White")
|
||||||
|
|
||||||
"php
|
"php
|
||||||
hi! link phpFunctions Function
|
hi! link phpFunctions Function
|
||||||
call s:X("StorageClass","","","","","")
|
|
||||||
hi! link phpSuperglobal Identifier
|
hi! link phpSuperglobal Identifier
|
||||||
hi! link phpQuoteSingle StringDelimiter
|
hi! link phpQuoteSingle StringDelimiter
|
||||||
hi! link phpQuoteDouble StringDelimiter
|
hi! link phpQuoteDouble StringDelimiter
|
||||||
hi! link phpBoolean Constant
|
hi! link phpBoolean Constant
|
||||||
hi! link phpNull Constant
|
hi! link phpNull Constant
|
||||||
hi! link phpArrayPair Operator
|
hi! link phpArrayPair Operator
|
||||||
|
"call s:X("StorageClass","","","","","")
|
||||||
|
|
||||||
"ruby
|
"ruby
|
||||||
hi! link rubySharpBang Comment
|
hi! link rubySharpBang Comment
|
||||||
call s:X("rubyClass","","","","","")
|
|
||||||
call s:X("rubyIdentifier","","","","","")
|
|
||||||
hi! link rubyConstant Type
|
hi! link rubyConstant Type
|
||||||
hi! link rubyFunction Function
|
hi! link rubyFunction Function
|
||||||
call s:X("rubyInstanceVariable","","","","","")
|
|
||||||
call s:X("rubySymbol","","","","","")
|
|
||||||
hi! link rubyGlobalVariable rubyInstanceVariable
|
hi! link rubyGlobalVariable rubyInstanceVariable
|
||||||
hi! link rubyModule rubyClass
|
hi! link rubyModule rubyClass
|
||||||
call s:X("rubyControl","","","","","")
|
|
||||||
hi! link rubyString String
|
hi! link rubyString String
|
||||||
hi! link rubyStringDelimiter StringDelimiter
|
hi! link rubyStringDelimiter StringDelimiter
|
||||||
hi! link rubyInterpolationDelimiter Identifier
|
hi! link rubyInterpolationDelimiter Identifier
|
||||||
call s:X("rubyRegexpDelimiter","","","","","")
|
"call s:X("rubyClass","","","","","")
|
||||||
call s:X("rubyRegexp","","","","","")
|
"call s:X("rubyIdentifier","","","","","")
|
||||||
call s:X("rubyRegexpSpecial","","","","","")
|
"call s:X("rubyInstanceVariable","","","","","")
|
||||||
call s:X("rubyPredefinedIdentifier","","","","","")
|
"call s:X("rubySymbol","","","","","")
|
||||||
|
"call s:X("rubyControl","","","","","")
|
||||||
|
"call s:X("rubyRegexpDelimiter","","","","","")
|
||||||
|
"call s:X("rubyRegexp","","","","","")
|
||||||
|
"call s:X("rubyRegexpSpecial","","","","","")
|
||||||
|
"call s:X("rubyPredefinedIdentifier","","","","","")
|
||||||
|
|
||||||
"javaScript
|
"javaScript
|
||||||
hi! link javaScriptValue Constant
|
hi! link javaScriptValue Constant
|
||||||
|
@ -396,13 +395,13 @@ hi! link objcMethodName Identifier
|
||||||
hi! link objcMethodArg Normal
|
hi! link objcMethodArg Normal
|
||||||
hi! link objcMessageName Identifier
|
hi! link objcMessageName Identifier
|
||||||
|
|
||||||
"debugger.vim
|
""debugger.vim
|
||||||
call s:X("DbgCurrent","","","","","")
|
"call s:X("DbgCurrent","","","","","")
|
||||||
call s:X("DbgBreakPt","","","","","")
|
"call s:X("DbgBreakPt","","","","","")
|
||||||
|
|
||||||
"vim-indent-guides
|
"vim-indent-guides
|
||||||
call s:X("IndentGuidesOdd","","7c7c7c","","","")
|
call s:X("IndentGuidesOdd","","7c7c7c","","","Grey")
|
||||||
call s:X("IndentGuidesEven","","1c1c1c","","","")
|
call s:X("IndentGuidesEven","","1c1c1c","","",s:termBlack)
|
||||||
if !exists("g:indent_guides_auto_colors")
|
if !exists("g:indent_guides_auto_colors")
|
||||||
let g:indent_guides_auto_colors = 0
|
let g:indent_guides_auto_colors = 0
|
||||||
endif
|
endif
|
||||||
|
|
Loading…
Reference in a new issue