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:
82
.config/nvim/colors/putty.vim
Normal file
82
.config/nvim/colors/putty.vim
Normal file
@@ -0,0 +1,82 @@
|
||||
" Vim color file
|
||||
" Maintainer: Prachya Boonkwan <kaamanita@hotmail.com>
|
||||
" Last Change: April 29, 2003
|
||||
" Licence: Public Domain
|
||||
|
||||
" This package offers a eye-catching color scheme that resembles the
|
||||
" default color scheme of Putty telnet terminal.
|
||||
|
||||
" First remove all existing highlighting.
|
||||
set background=dark
|
||||
hi clear
|
||||
if exists("syntax_on")
|
||||
syntax reset
|
||||
endif
|
||||
|
||||
let colors_name = "putty"
|
||||
|
||||
hi Normal guifg=Grey guibg=Black
|
||||
|
||||
hi ErrorMsg guibg=Red guifg=White
|
||||
hi IncSearch gui=reverse
|
||||
hi ModeMsg gui=bold
|
||||
hi StatusLine gui=reverse,bold
|
||||
hi StatusLineNC gui=reverse
|
||||
hi VertSplit gui=reverse
|
||||
hi Visual gui=reverse guifg=Grey guibg=fg
|
||||
hi VisualNOS gui=underline,bold
|
||||
hi DiffText gui=bold guibg=Red
|
||||
hi Cursor guibg=Green guifg=NONE
|
||||
hi lCursor guibg=Cyan guifg=NONE
|
||||
hi Directory guifg=Blue
|
||||
hi LineNr guifg=#BBBB00
|
||||
hi MoreMsg gui=bold guifg=SeaGreen
|
||||
hi NonText gui=bold guifg=Blue guibg=Black
|
||||
hi Question gui=bold guifg=SeaGreen
|
||||
hi Search guibg=#BBBB00 guifg=NONE
|
||||
hi SpecialKey guifg=Blue
|
||||
hi Title gui=bold guifg=Magenta
|
||||
hi WarningMsg guifg=Red
|
||||
hi WildMenu guibg=Cyan guifg=Black
|
||||
hi Folded guibg=White guifg=DarkBlue
|
||||
hi FoldColumn guibg=Grey guifg=DarkBlue
|
||||
hi DiffAdd guibg=LightBlue
|
||||
hi DiffChange guibg=LightMagenta
|
||||
hi DiffDelete gui=bold guifg=Blue guibg=LightCyan
|
||||
|
||||
hi Comment guifg=Blue guibg=Black
|
||||
hi Constant guifg=#BB0000 guibg=Black
|
||||
hi PreProc guifg=#BB00BB guibg=Black
|
||||
hi Statement gui=NONE guifg=#BBBB00 guibg=Black
|
||||
hi Special guifg=#BB00BB guibg=Black
|
||||
hi Ignore guifg=Grey
|
||||
hi Identifier guifg=#00BBBB guibg=Black
|
||||
hi Type guifg=#00BB00 guibg=Black
|
||||
|
||||
hi link IncSearch Visual
|
||||
hi link String Constant
|
||||
hi link Character Constant
|
||||
hi link Number Constant
|
||||
hi link Boolean Constant
|
||||
hi link Float Number
|
||||
hi link Function Identifier
|
||||
hi link Conditional Statement
|
||||
hi link Repeat Statement
|
||||
hi link Label Statement
|
||||
hi link Operator Statement
|
||||
hi link Keyword Statement
|
||||
hi link Exception Statement
|
||||
hi link Include PreProc
|
||||
hi link Define PreProc
|
||||
hi link Macro PreProc
|
||||
hi link PreCondit PreProc
|
||||
hi link StorageClass Type
|
||||
hi link Structure Type
|
||||
hi link Typedef Type
|
||||
hi link Tag Special
|
||||
hi link SpecialChar Special
|
||||
hi link Delimiter Special
|
||||
hi link SpecialComment Special
|
||||
hi link Debug Special
|
||||
|
||||
" vim: sw=2
|
Reference in New Issue
Block a user