mirror of
https://github.com/davegallant/nix-config
synced 2025-08-07 21:32:27 +00:00
Switch vim colorscheme to gruvbox (#23)
This commit is contained in:
103
.config/nvim/colors/robinhood.vim
Normal file
103
.config/nvim/colors/robinhood.vim
Normal file
@@ -0,0 +1,103 @@
|
||||
" Vim color file
|
||||
" Maintainer: Datila Carvalho <datila@hotmail.com>
|
||||
" Last Change: May, 19, 2005
|
||||
" Version: 0.2
|
||||
|
||||
" This is a VIM's version of the emacs color theme
|
||||
" _Robin Hood_ created by Alex Schroede.
|
||||
|
||||
set background=dark
|
||||
hi clear
|
||||
if exists("syntax_on")
|
||||
syntax reset
|
||||
endif
|
||||
|
||||
let g:colors_name = "robinhood"
|
||||
|
||||
|
||||
""" Colors
|
||||
|
||||
" GUI colors
|
||||
hi Cursor guifg=fg guibg=gray
|
||||
hi CursorIM guifg=NONE guibg=gray
|
||||
"hi Directory
|
||||
"hi DiffAdd
|
||||
"hi DiffChange
|
||||
"hi DiffDelete
|
||||
"hi DiffText
|
||||
hi ErrorMsg gui=bold guifg=white guibg=Red
|
||||
"hi VertSplit
|
||||
"hi Folded
|
||||
"hi FoldColumn
|
||||
"hi IncSearch
|
||||
hi LineNr gui=bold guifg=yellowgreen guibg=#203010
|
||||
"hi ModeMsg
|
||||
"hi MoreMsg
|
||||
"hi NonText
|
||||
hi Normal guibg=#304020 guifg=wheat
|
||||
"hi Question
|
||||
hi Search gui=bold guifg=black guibg=gray
|
||||
"hi SpecialKey
|
||||
hi StatusLine guifg=darkolivegreen guibg=wheat
|
||||
hi StatusLineNC guifg=olivedrab guibg=wheat
|
||||
"hi Title
|
||||
hi Visual guifg=darkslategrey guibg=fg
|
||||
hi VisualNOS gui=bold guifg=Black guibg=fg
|
||||
hi WarningMsg guifg=White guibg=Tomato
|
||||
"hi WildMenu
|
||||
|
||||
hi User2 guifg=yellowgreen guibg=#091900 gui=bold
|
||||
|
||||
" If using Motif/Athena
|
||||
hi Menu guibg=#304020 guifg=wheat
|
||||
hi Scrollbar guibg=bg
|
||||
|
||||
" Colors for syntax highlighting
|
||||
hi Comment guifg=lightblue
|
||||
|
||||
hi Constant gui=bold guifg=lightcyan
|
||||
hi String guifg=lightsalmon
|
||||
hi Character guifg=lightsalmon
|
||||
hi Number gui=bold guifg=lightcyan
|
||||
hi Boolean gui=bold guifg=lightcyan
|
||||
hi Float gui=bold guifg=lightcyan
|
||||
|
||||
hi Identifier gui=bold guifg=palegreen
|
||||
hi Function guifg=yellowgreen
|
||||
|
||||
hi Statement gui=bold guifg=salmon
|
||||
hi Conditional gui=bold guifg=salmon
|
||||
hi Repeat gui=bold guifg=salmon
|
||||
hi Label guifg=salmon
|
||||
hi Operator guifg=salmon
|
||||
"hi Keyword
|
||||
"hi Exception
|
||||
|
||||
hi PreProc guifg=palegreen
|
||||
hi Include gui=bold guifg=palegreen
|
||||
hi Define guifg=palegreen
|
||||
hi Macro guifg=aquamarine
|
||||
hi PreCondit guifg=palegreen
|
||||
|
||||
hi Type gui=bold guifg=yellowgreen
|
||||
hi StorageClass gui=bold guifg=aquamarine
|
||||
hi Structure gui=bold guifg=aquamarine
|
||||
hi Typedef gui=bold guifg=aquamarine
|
||||
|
||||
"hi Special
|
||||
""Underline Character
|
||||
"hi SpecialChar gui=underline
|
||||
"hi Tag gui=bold,underline
|
||||
""Statement
|
||||
"hi Delimiter gui=bold
|
||||
""Bold comment (in Java at least)
|
||||
"hi SpecialComment gui=bold
|
||||
"hi Debug gui=bold
|
||||
|
||||
hi Underlined gui=underline
|
||||
|
||||
hi Ignore guifg=bg
|
||||
|
||||
hi Error gui=bold guifg=White guibg=Red
|
||||
|
||||
"hi Todo
|
Reference in New Issue
Block a user