mirror of
https://github.com/neovim/neovim.git
synced 2024-12-19 18:55:14 -07:00
a98a6996c2
Vim runtime files based on 7.4.384 / hg changeset 7090d7f160f7 Excluding: Amiga icons (*.info, icons/) doc/hangulin.txt tutor/ spell/ lang/ (only used for menu translations) macros/maze/, macros/hanoi/, macros/life/, macros/urm/ These were used to test vi compatibility. termcap "Demonstration of a termcap file (for the Amiga and Archimedes)" Helped-by: Rich Wareham <rjw57@cam.ac.uk> Helped-by: John <john.schmidt.h@gmail.com> Helped-by: Yann <yann@yann-salaun.com> Helped-by: Christophe Badoit <c.badoit@lesiteimmo.com> Helped-by: drasill <github@tof2k.com> Helped-by: Tae Sandoval Murgan <taecilla@gmail.com> Helped-by: Lowe Thiderman <lowe.thiderman@gmail.com>
46 lines
1.4 KiB
VimL
46 lines
1.4 KiB
VimL
" local syntax file - set colors on a per-machine basis:
|
|
" vim: tw=0 ts=4 sw=4
|
|
" Vim color file
|
|
" Maintainer: Ron Aaron <ron@ronware.org>
|
|
" Last Change: 2013 May 24
|
|
|
|
set background=dark
|
|
hi clear
|
|
if exists("syntax_on")
|
|
syntax reset
|
|
endif
|
|
let g:colors_name = "ron"
|
|
hi Normal guifg=cyan guibg=black
|
|
hi NonText guifg=yellow guibg=#303030
|
|
hi comment guifg=green
|
|
hi constant guifg=cyan gui=bold
|
|
hi identifier guifg=cyan gui=NONE
|
|
hi statement guifg=lightblue gui=NONE
|
|
hi preproc guifg=Pink2
|
|
hi type guifg=seagreen gui=bold
|
|
hi special guifg=yellow
|
|
hi ErrorMsg guifg=Black guibg=Red
|
|
hi WarningMsg guifg=Black guibg=Green
|
|
hi Error guibg=Red
|
|
hi Todo guifg=Black guibg=orange
|
|
hi Cursor guibg=#60a060 guifg=#00ff00
|
|
hi Search guibg=darkgray guifg=black gui=bold
|
|
hi IncSearch gui=NONE guibg=steelblue
|
|
hi LineNr guifg=darkgrey
|
|
hi title guifg=darkgrey
|
|
hi ShowMarksHL ctermfg=cyan ctermbg=lightblue cterm=bold guifg=yellow guibg=black gui=bold
|
|
hi StatusLineNC gui=NONE guifg=lightblue guibg=darkblue
|
|
hi StatusLine gui=bold guifg=cyan guibg=blue
|
|
hi label guifg=gold2
|
|
hi operator guifg=orange
|
|
hi clear Visual
|
|
hi Visual term=reverse cterm=reverse gui=reverse
|
|
hi DiffChange guibg=darkgreen
|
|
hi DiffText guibg=olivedrab
|
|
hi DiffAdd guibg=slateblue
|
|
hi DiffDelete guibg=coral
|
|
hi Folded guibg=gray30
|
|
hi FoldColumn guibg=gray30 guifg=white
|
|
hi cIf0 guifg=gray
|
|
hi diffOnly guifg=red gui=bold
|