mirror of
https://github.com/neovim/neovim.git
synced 2024-12-20 03:05:11 -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>
27 lines
1.0 KiB
VimL
27 lines
1.0 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: 2003 May 02
|
|
|
|
hi clear
|
|
set background=dark
|
|
if exists("syntax_on")
|
|
syntax reset
|
|
endif
|
|
let g:colors_name = "pablo"
|
|
|
|
highlight Comment ctermfg=8 guifg=#808080
|
|
highlight Constant ctermfg=14 cterm=none guifg=#00ffff gui=none
|
|
highlight Identifier ctermfg=6 guifg=#00c0c0
|
|
highlight Statement ctermfg=3 cterm=bold guifg=#c0c000 gui=bold
|
|
highlight PreProc ctermfg=10 guifg=#00ff00
|
|
highlight Type ctermfg=2 guifg=#00c000
|
|
highlight Special ctermfg=12 guifg=#0000ff
|
|
highlight Error ctermbg=9 guibg=#ff0000
|
|
highlight Todo ctermfg=4 ctermbg=3 guifg=#000080 guibg=#c0c000
|
|
highlight Directory ctermfg=2 guifg=#00c000
|
|
highlight StatusLine ctermfg=11 ctermbg=12 cterm=none guifg=#ffff00 guibg=#0000ff gui=none
|
|
highlight Normal guifg=#ffffff guibg=#000000
|
|
highlight Search ctermbg=3 guibg=#c0c000
|