mirror of
https://github.com/davegallant/nix-config
synced 2025-08-07 09:12:28 +00:00
Switch vim colorscheme to gruvbox (#23)
This commit is contained in:
170
.config/nvim/colors/fog.vim
Normal file
170
.config/nvim/colors/fog.vim
Normal file
@@ -0,0 +1,170 @@
|
||||
" Vim color file
|
||||
" vim: tw=0 ts=4 sw=4
|
||||
" Maintainer: Thomas R. Kimpton <tomk@emcity.net>
|
||||
" Last Change: 2001 Nov 8
|
||||
" This color scheme is meant for the person that spends hours
|
||||
" and hours and hours and... in vim and wants some contrast to
|
||||
" help pick things out in the files they edit, but doesn't want
|
||||
" **C**O**N**T**R**A**S**T**!
|
||||
|
||||
set background=light
|
||||
|
||||
hi clear
|
||||
|
||||
if exists("syntax_on")
|
||||
syntax reset
|
||||
endif
|
||||
|
||||
let colors_name = "fog"
|
||||
|
||||
hi Normal ctermbg=White ctermfg=Black
|
||||
" 660066 = darkish purple
|
||||
hi Normal guifg=#660066 guibg=grey80
|
||||
|
||||
hi NonText term=bold
|
||||
hi NonText ctermfg=LightBlue
|
||||
hi NonText gui=bold guifg=LightBlue guibg=grey80
|
||||
|
||||
hi Comment ctermfg=DarkGrey ctermbg=White
|
||||
" 444499 = darkish blue grey
|
||||
hi Comment guifg=#444499
|
||||
|
||||
hi Constant term=underline
|
||||
hi Constant ctermfg=Magenta
|
||||
hi Constant guifg=#7070a0
|
||||
|
||||
hi Statement term=bold
|
||||
hi Statement cterm=bold ctermfg=DarkGreen ctermbg=White
|
||||
hi Statement guifg=DarkGreen gui=bold
|
||||
|
||||
hi identifier ctermfg=DarkGreen
|
||||
hi identifier guifg=DarkGreen
|
||||
|
||||
hi preproc ctermfg=DarkGreen
|
||||
hi preproc guifg=#408040
|
||||
|
||||
hi type ctermfg=DarkBlue
|
||||
hi type guifg=DarkBlue
|
||||
|
||||
hi label ctermfg=yellow
|
||||
hi label guifg=#c06000
|
||||
|
||||
hi operator ctermfg=darkYellow
|
||||
hi operator guifg=DarkGreen gui=bold
|
||||
|
||||
hi StorageClass ctermfg=DarkRed ctermbg=White
|
||||
hi StorageClass guifg=#a02060 gui=bold
|
||||
|
||||
hi Number ctermfg=Blue ctermbg=White
|
||||
hi Number guifg=Blue
|
||||
|
||||
hi Special term=bold
|
||||
hi Special ctermfg=LightRed
|
||||
hi Special guifg=#aa8822
|
||||
|
||||
hi Cursor ctermbg=DarkMagenta
|
||||
hi Cursor guibg=#880088 guifg=LightGrey
|
||||
|
||||
hi lCursor guibg=Cyan guifg=Black
|
||||
|
||||
hi ErrorMsg term=standout
|
||||
hi ErrorMsg ctermbg=DarkRed ctermfg=White
|
||||
hi ErrorMsg guibg=DarkRed guifg=White
|
||||
|
||||
hi DiffText term=reverse
|
||||
hi DiffText cterm=bold ctermbg=DarkRed
|
||||
hi DiffText gui=bold guibg=DarkRed
|
||||
|
||||
hi Directory term=bold
|
||||
hi Directory ctermfg=LightRed
|
||||
hi Directory guifg=Red gui=underline
|
||||
|
||||
hi LineNr term=underline
|
||||
hi LineNr ctermfg=Yellow
|
||||
hi LineNr guifg=#ccaa22
|
||||
|
||||
hi MoreMsg term=bold
|
||||
hi MoreMsg ctermfg=LightGreen
|
||||
hi MoreMsg gui=bold guifg=SeaGreen
|
||||
|
||||
hi Question term=standout
|
||||
hi Question ctermfg=LightGreen
|
||||
hi Question gui=bold guifg=DarkGreen
|
||||
|
||||
hi Search term=reverse
|
||||
hi Search ctermbg=DarkYellow ctermfg=Black
|
||||
hi Search guibg=#887722 guifg=Black
|
||||
|
||||
hi SpecialKey term=bold
|
||||
hi SpecialKey ctermfg=LightBlue
|
||||
hi SpecialKey guifg=Blue
|
||||
|
||||
hi SpecialChar ctermfg=DarkGrey ctermbg=White
|
||||
hi SpecialChar guifg=DarkGrey gui=bold
|
||||
|
||||
hi Title term=bold
|
||||
hi Title ctermfg=LightMagenta
|
||||
hi Title gui=underline guifg=DarkMagenta
|
||||
|
||||
hi WarningMsg term=standout
|
||||
hi WarningMsg ctermfg=LightRed
|
||||
hi WarningMsg guifg=DarkBlue guibg=#9999cc
|
||||
|
||||
hi WildMenu term=standout
|
||||
hi WildMenu ctermbg=Yellow ctermfg=Black
|
||||
hi WildMenu guibg=Yellow guifg=Black gui=underline
|
||||
|
||||
hi Folded term=standout
|
||||
hi Folded ctermbg=LightGrey ctermfg=DarkBlue
|
||||
hi Folded guibg=LightGrey guifg=DarkBlue
|
||||
|
||||
hi FoldColumn term=standout
|
||||
hi FoldColumn ctermbg=LightGrey ctermfg=DarkBlue
|
||||
hi FoldColumn guibg=Grey guifg=DarkBlue
|
||||
|
||||
hi DiffAdd term=bold
|
||||
hi DiffAdd ctermbg=DarkBlue
|
||||
hi DiffAdd guibg=DarkBlue
|
||||
|
||||
hi DiffChange term=bold
|
||||
hi DiffChange ctermbg=DarkMagenta
|
||||
hi DiffChange guibg=DarkMagenta
|
||||
|
||||
hi DiffDelete term=bold
|
||||
hi DiffDelete ctermfg=Blue ctermbg=DarkCyan
|
||||
hi DiffDelete gui=bold guifg=Blue guibg=DarkCyan
|
||||
|
||||
hi Ignore ctermfg=LightGrey
|
||||
hi Ignore guifg=grey90
|
||||
|
||||
hi IncSearch term=reverse
|
||||
hi IncSearch cterm=reverse
|
||||
hi IncSearch gui=reverse
|
||||
|
||||
hi ModeMsg term=bold
|
||||
hi ModeMsg cterm=bold
|
||||
hi ModeMsg gui=bold
|
||||
|
||||
hi StatusLine term=reverse,bold
|
||||
hi StatusLine cterm=reverse,bold
|
||||
hi StatusLine gui=reverse,bold
|
||||
|
||||
hi StatusLineNC term=reverse
|
||||
hi StatusLineNC cterm=reverse
|
||||
hi StatusLineNC gui=reverse
|
||||
|
||||
hi VertSplit term=reverse
|
||||
hi VertSplit cterm=reverse
|
||||
hi VertSplit gui=reverse
|
||||
|
||||
hi Visual term=reverse
|
||||
hi Visual cterm=reverse
|
||||
hi Visual gui=reverse guifg=DarkGrey guibg=fg
|
||||
|
||||
hi VisualNOS term=underline,bold
|
||||
hi VisualNOS cterm=underline,bold
|
||||
hi VisualNOS gui=underline,bold
|
||||
|
||||
hi Todo gui=reverse
|
||||
|
||||
" vim: sw=2
|
Reference in New Issue
Block a user