Change some vim syntax highlighting

This commit is contained in:
2023-12-05 16:58:04 -05:00
parent 928cc915dd
commit 02593ec5f6
7 changed files with 77 additions and 155 deletions

View File

@@ -5,6 +5,8 @@
" The theme file original copied from the Tomorrow theme.
" See https://github.com/chriskempson/vim-tomorrow-theme.git for it.
" Hex color conversion functions borrowed from the theme "Desert256".
"
" @todo convert to new format (see campo-dark-blue.vim)
let g:campo_theme_use_rainbow_parens = 1
@@ -13,7 +15,7 @@ let s:foreground = "263238"
let s:background = "fbfbfb"
let s:selection = "e3fc8d"
let s:line = "d5d5d5"
let s:comment = "7c7c7c"
let s:comment = "4c4c4c"
let s:red = "d62a28"
let s:orange = "ff7800"
let s:yellow = "eab700"
@@ -294,13 +296,14 @@ if has("gui_running") || &t_Co == 88 || &t_Co == 256
call <SID>X("Number", s:black, "", "")
"call <SID>X("Ignore", "666666", "", "")
" Custom TODO/NOTE colors
call <SID>X("Todo", s:red, s:background, "underline")
call <SID>X("Bugs", s:red, s:background, "standout")
call <SID>X("Notes","666666", "ffffff","bold")
call <SID>X("Notices","dcd53e",s:background,"bold")
call <SID>X("ErrorMsg", s:error_msg_foreground, s:error_msg_background, "underline")
" Notes and annotated comment text
call <SID>X("MyTitle", s:foreground, "", "bold") " // # Some Title
call <SID>X("MyAnnotatedNote", s:foreground, "", "bold") " // @incomplete
call <SID>X("MyNote", "", s:black, "standout") " // NOTE:, IDEA:, TODO:
call <SID>X("MyEmphasis", s:orange, "", "bold,standout") " // WARNING:, IMPORTANT:
call <SID>X("MyBug", s:red, "", "standout") " // FIXME:, BUG:, DEPRECATED:
call <SID>X("ErrorMsg", s:error_msg_foreground, s:error_msg_background, "underline")
" Vim Highlighting
call <SID>X("vimCommand", s:blue, "", "none")