mirror of
https://github.com/davegallant/nix-config
synced 2025-08-08 01:42:28 +00:00
Switch vim colorscheme to gruvbox (#23)
This commit is contained in:
83
.config/nvim/colors/tcsoft.vim
Normal file
83
.config/nvim/colors/tcsoft.vim
Normal file
@@ -0,0 +1,83 @@
|
||||
" Vim Farben-Datei
|
||||
" Ersteller: Ingo Fabbri <vim@tcsoft.net>
|
||||
" Letzte <20>nderung: 2007 Jan 19
|
||||
|
||||
" Mein pers<72>nliches Farbschema. Es schont die Augen, da es keine grellen Farben verwendet.
|
||||
" Am Besten geignet f<>r PHP
|
||||
|
||||
set background=light
|
||||
hi clear
|
||||
if exists("syntax_on")
|
||||
syntax reset
|
||||
endif
|
||||
let colors_name = "TCSoft"
|
||||
|
||||
if version >= 700
|
||||
hi CursorLine guibg=#FFFF33 gui=NONE "hellgelb
|
||||
hi CursorColumn guibg=#EAEAEA
|
||||
hi MatchParen guifg=white guibg=#99CC00 gui=bold
|
||||
|
||||
"Tabpages
|
||||
hi TabLine guifg=black guibg=#B0B8C0 gui=italic
|
||||
hi TabLineFill guifg=#9098A0
|
||||
hi TabLineSel guifg=black guibg=#F0F0F0 gui=italic,bold
|
||||
|
||||
"P-Menu (auto-completion)
|
||||
hi Pmenu guifg=white guibg=#808080
|
||||
"PmenuSel
|
||||
"PmenuSbar
|
||||
"PmenuThumb
|
||||
endif
|
||||
|
||||
" Farb-Einstellungen f<>r das GUI
|
||||
hi Normal guifg=#000000 guibg=#FFFFFF "Schwarze Schrift auf wei<65>em Hintergrund
|
||||
|
||||
hi Ignore guifg=bg
|
||||
|
||||
hi Comment guifg=#000099 gui=italic "dunkelblau
|
||||
hi Constant guifg=#666666 gui=NONE "grau
|
||||
hi Special guifg=#FF0000 gui=NONE "rot
|
||||
hi Identifier guifg=#993300 gui=NONE "rostfarbig
|
||||
hi Statement guifg=#FF9900 gui=NONE "orange
|
||||
hi PreProc guifg=#009900 gui=NONE "dunkelgr<67>n
|
||||
hi Type guifg=#FF9900 gui=bold "orange
|
||||
hi Cursor guifg=#000000 gui=reverse "schwarz
|
||||
hi LineNr guifg=#000000 guibg=#EFEFEF gui=NONE "schwarz
|
||||
hi StatusLine guifg=#000000 gui=reverse,bold "schwarz
|
||||
|
||||
hi Todo guifg=Blue guibg=Yellow
|
||||
syn keyword Todo TODO FIXME XXX
|
||||
syn keyword Error FEHLER
|
||||
|
||||
hi link Function PreProc
|
||||
hi link String Constant
|
||||
hi link Character Constant
|
||||
|
||||
hi! link MoreMsg Comment
|
||||
hi! link ErrorMsg Visual
|
||||
hi! link WarningMsg ErrorMsg
|
||||
hi! link Question Comment
|
||||
|
||||
hi link Number Special
|
||||
hi link Boolean Constant
|
||||
hi link Float Number
|
||||
|
||||
hi link Operator Identifier
|
||||
hi link Keyword Statement
|
||||
hi link Exception Statement
|
||||
hi link Include PreProc
|
||||
hi link Define PreProc
|
||||
hi link Macro PreProc
|
||||
|
||||
hi link Conditional Statement
|
||||
hi link Repeat Statement
|
||||
hi link Label Statement
|
||||
|
||||
hi link PreCondit PreProc
|
||||
hi link StorageClass Type
|
||||
hi link Structure Type
|
||||
hi link Typedef Type
|
||||
hi link SpecialChar Special
|
||||
hi link Delimiter Special
|
||||
hi link SpecialComment Comment
|
||||
hi link Debug Special
|
Reference in New Issue
Block a user