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>
51 lines
1.6 KiB
VimL
51 lines
1.6 KiB
VimL
" Vim color file
|
|
" Maintainer: Thorsten Maerz <info@netztorte.de>
|
|
" Last Change: 2006 Dec 07
|
|
" grey on black
|
|
" optimized for TFT panels
|
|
|
|
set background=dark
|
|
hi clear
|
|
if exists("syntax_on")
|
|
syntax reset
|
|
endif
|
|
"colorscheme default
|
|
let g:colors_name = "torte"
|
|
|
|
" hardcoded colors :
|
|
" GUI Comment : #80a0ff = Light blue
|
|
|
|
" GUI
|
|
highlight Normal guifg=Grey80 guibg=Black
|
|
highlight Search guifg=Black guibg=Red gui=bold
|
|
highlight Visual guifg=#404040 gui=bold
|
|
highlight Cursor guifg=Black guibg=Green gui=bold
|
|
highlight Special guifg=Orange
|
|
highlight Comment guifg=#80a0ff
|
|
highlight StatusLine guifg=blue guibg=white
|
|
highlight Statement guifg=Yellow gui=NONE
|
|
highlight Type gui=NONE
|
|
|
|
" Console
|
|
highlight Normal ctermfg=LightGrey ctermbg=Black
|
|
highlight Search ctermfg=Black ctermbg=Red cterm=NONE
|
|
highlight Visual cterm=reverse
|
|
highlight Cursor ctermfg=Black ctermbg=Green cterm=bold
|
|
highlight Special ctermfg=Brown
|
|
highlight Comment ctermfg=Blue
|
|
highlight StatusLine ctermfg=blue ctermbg=white
|
|
highlight Statement ctermfg=Yellow cterm=NONE
|
|
highlight Type cterm=NONE
|
|
|
|
" only for vim 5
|
|
if has("unix")
|
|
if v:version<600
|
|
highlight Normal ctermfg=Grey ctermbg=Black cterm=NONE guifg=Grey80 guibg=Black gui=NONE
|
|
highlight Search ctermfg=Black ctermbg=Red cterm=bold guifg=Black guibg=Red gui=bold
|
|
highlight Visual ctermfg=Black ctermbg=yellow cterm=bold guifg=#404040 gui=bold
|
|
highlight Special ctermfg=LightBlue cterm=NONE guifg=LightBlue gui=NONE
|
|
highlight Comment ctermfg=Cyan cterm=NONE guifg=LightBlue gui=NONE
|
|
endif
|
|
endif
|
|
|