summaryrefslogtreecommitdiff
path: root/colors/patch_0.10_legacy_elflord.vim
diff options
context:
space:
mode:
authorLouie S <louie@example.com>2024-07-02 17:54:38 -0400
committerLouie S <louie@example.com>2024-07-02 17:54:38 -0400
commitf3c40bfdf890d7a363ce54df4c690a9b69676185 (patch)
treeb2cc5d44510274572a2a5fb6ac8cbd2a9b0af569 /colors/patch_0.10_legacy_elflord.vim
parent590c33f35d2226a9cf7f9741011384ddef5add6f (diff)
Fix incorrect visual mode and pmenu in 0.10
Diffstat (limited to 'colors/patch_0.10_legacy_elflord.vim')
-rw-r--r--colors/patch_0.10_legacy_elflord.vim51
1 files changed, 51 insertions, 0 deletions
diff --git a/colors/patch_0.10_legacy_elflord.vim b/colors/patch_0.10_legacy_elflord.vim
new file mode 100644
index 0000000..525c912
--- /dev/null
+++ b/colors/patch_0.10_legacy_elflord.vim
@@ -0,0 +1,51 @@
+" 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
+
+set background=dark
+hi clear
+colorscheme vim
+if exists("syntax_on")
+ syntax reset
+endif
+let g:colors_name = "elflord"
+hi Normal guifg=cyan guibg=black
+hi Comment term=bold ctermfg=DarkCyan guifg=#80a0ff
+hi Constant term=underline ctermfg=Magenta guifg=Magenta
+hi Special term=bold ctermfg=DarkMagenta guifg=Red
+hi Identifier term=underline cterm=bold ctermfg=Cyan guifg=#40ffff
+hi Statement term=bold ctermfg=Yellow gui=bold guifg=#aa4444
+hi PreProc term=underline ctermfg=LightBlue guifg=#ff80ff
+hi Type term=underline ctermfg=LightGreen guifg=#60ff60 gui=bold
+hi Function term=bold ctermfg=White guifg=White
+hi Repeat term=underline ctermfg=White guifg=white
+hi Operator ctermfg=Red guifg=Red
+hi Ignore ctermfg=black guifg=bg
+hi Error term=reverse ctermbg=Red ctermfg=White guibg=Red guifg=White
+hi Todo term=standout ctermbg=Yellow ctermfg=Black guifg=Blue guibg=Yellow
+
+" Common groups that link to default highlighting.
+" You can specify other highlighting easily.
+hi link String Constant
+hi link Character Constant
+hi link Number Constant
+hi link Boolean Constant
+hi link Float Number
+hi link Conditional Repeat
+hi link Label Statement
+hi link Keyword Statement
+hi link Exception Statement
+hi link Include PreProc
+hi link Define PreProc
+hi link Macro PreProc
+hi link PreCondit PreProc
+hi link StorageClass Type
+hi link Structure Type
+hi link Typedef Type
+hi link Tag Special
+hi link SpecialChar Special
+hi link Delimiter Special
+hi link SpecialComment Special
+hi link Debug Special