summaryrefslogtreecommitdiff
path: root/vim/colors
diff options
context:
space:
mode:
authorMiguel <m.i@gmx.at>2021-11-03 19:59:44 +0100
committerMiguel <m.i@gmx.at>2021-11-03 19:59:44 +0100
commitf70d5dc9b1f546bcfae67f067fe2e3b67f94ca45 (patch)
tree3bffaa05b78db0e393bc44eb273f771e08320154 /vim/colors
parente3fb79099e233185825b248a0b275173bd182239 (diff)
improving dotfiles
Diffstat (limited to 'vim/colors')
-rw-r--r--vim/colors/miguels.vim200
-rw-r--r--vim/colors/olgas.vim117
2 files changed, 0 insertions, 317 deletions
diff --git a/vim/colors/miguels.vim b/vim/colors/miguels.vim
deleted file mode 100644
index 79b18af..0000000
--- a/vim/colors/miguels.vim
+++ /dev/null
@@ -1,200 +0,0 @@
-"
-" Miguel's Vim Colors
-"
-" So far this scheme is mostly optimized for the gui version of vim.
-" adaption for cterm / xterm might follow one day
-"
-" useful vim help-screens: group-name, highlight-groups, cterm-colors
-" rgb: /usr/share/vim/vim73/rgb.txt
-"
-
-set background=dark
-
-hi clear
-
-if exists("syntax_on")
- syntax reset
-endif
-
-let g:colors_name = "miguels"
-
-"first objective is to set: guifg guibg gui and maybe guisp
-"afterwards we will port this to xterm
-""""""""""""""""""""""""""""""""""""""""""""""""""""
-
-"Normal normal text, we can also use "font=Monospace 10" or similar
-hi Normal guifg=White guibg=Black gui=none ctermfg=White ctermbg=Black
-
-"""""""""""""""""""""""""""""""""""""""""""""""""""
-
-"Comment /* */, //, ...
-hi Comment guifg=#5a7 gui=none ctermfg=DarkGreen cterm=none
-
-"Constant true, false, 0.123, "hello", <iostream> ...
-hi Constant guifg=#8f6 gui=bold ctermfg=Cyan cterm=none
-
-"Identifier mysql_escape_string, $dupa, ...
-hi Identifier guifg=orange gui=bold ctermfg=Brown cterm=none
-
-"Statement if, for, return, ...
-hi Statement guifg=#f76 gui=bold ctermfg=Red cterm=none
-
-"PreProc #include, ...
-hi PreProc guifg=#fe5 gui=none ctermfg=Yellow cterm=none
-
-"Type int, float, bool, struct ...
-hi Type guifg=#89f gui=bold ctermfg=Blue cterm=bold
-
-"Special <?php, '\n', ...
-hi Special guibg=gray20 guifg=#afc gui=bold ctermbg=DarkGray ctermfg=Green cterm=bold
-
-
-"
-hi Underlined gui=underline,bold guibg=#521 guifg=white ctermbg=black ctermfg=white cterm=underline
-hi Ignore guifg=grey30 ctermfg=DarkGray
-
-"hi Error guifg=white guibg=#a00 gui=bold cterm=bold ctermfg=white ctermbg=red
-hi Error guibg=#a00
-hi Todo guifg=black guibg=#dd7 gui=bold ctermbg=yellow ctermfg=black
-
-""""""""""""""""""""""""""""""""""""""""""""""""
-
-"ColorColumn used for the columns set with 'colorcolumn'
-hi ColorColumn guibg=#200 ctermbg=DarkRed ctermfg=White
-
-"Conceal placeholder characters substituted for concealed text (see 'conceallevel')
-hi Conceal guibg=gray20
-
-"Cursor the character under the cursor
-hi Cursor guifg=black guibg=#afe gui=bold
-
-"CursorIM like Cursor, but used when in IME mode |CursorIM|
-" I do not use this by now (set to strange colors to notice them easily)
-hi CursorIM gui=underline guifg=yellow guibg=red
-
-"CursorColumn the screen column that the cursor is in when 'cursorcolumn' is set
-hi CursorColumn guibg=#052010
-
-"CursorLine the screen line that the cursor is in when 'cursorline' is set
-hi CursorLine guibg=#052010
-
-"Directory directory names (and other special names in listings)
-hi Directory guifg=green
-
-"DiffAdd diff mode: Added line |diff.txt|
-hi DiffAdd guibg=#326
-
-"DiffChange diff mode: Changed line |diff.txt|
-hi DiffChange gui=reverse
-
-"DiffDelete diff mode: Deleted line |diff.txt|
-hi DiffDelete guibg=#a43 guifg=white
-
-"DiffText diff mode: Changed text within a changed line |diff.txt|
-hi DiffText guibg=DarkRed
-
-"ErrorMsg error messages on the command line
-hi ErrorMsg guifg=white guibg=#a00 gui=bold
-
-"VertSplit the column separating vertically split windows
-hi VertSplit guibg=gray20 guifg=gray60 gui=none
-
-"Folded line used for closed folds
-hi Folded guibg=gray20 guifg=#f7f gui=bold
-
-"FoldColumn 'foldcolumn'
-hi FoldColumn guibg=gray20 guifg=#f7f gui=bold
-
-"SignColumn column where |signs| are displayed
-hi SignColumn guibg=gray10
-
-"IncSearch 'incsearch' highlighting; also used for the text replaced with ":s///c"
-hi IncSearch guifg=yellow guibg=black
-
-"LineNr Line number for ":number" and ":#" commands, and when 'number' or 'relativenumber' option is set.
-hi LineNr guifg=gray80 guibg=gray10 gui=none ctermbg=Black ctermfg=Gray
-
-"CursorLineNr Like LineNr when 'cursorline' is set for the cursor line.
-hi CursorLineNr guifg=gray10 guibg=gray60 gui=bold
-
-"MatchParen The character under the cursor or just before it, if it is a paired bracket, and its match. |pi_paren.txt|
-hi MatchParen guifg=black guibg=white gui=bold
-
-"ModeMsg 'showmode' message (e.g., "-- INSERT --")
-hi ModeMsg guifg=#9fa gui=bold guibg=gray10
-
-"MoreMsg |more-prompt|
-hi MoreMsg guifg=yellow guibg=gray10 gui=bold
-
-"NonText '~' and '@' at the end of the window, characters from 'showbreak' and other characters that do not really exist in the text (e.g., ">" displayed when a double-wide character doesn't fit at the end of the line).
-hi NonText guibg=gray10 guifg=#f0f gui=bold
-
-"Pmenu Popup menu: normal item.
-hi Pmenu guibg=orange guifg=black
-
-"PmenuSel Popup menu: selected item.
-hi PmenuSel guibg=red guifg=black gui=bold
-
-"PmenuSbar Popup menu: scrollbar.
-hi PmenuSbar guibg=red
-
-"PmenuThumb Popup menu: Thumb of the scrollbar.
-hi PmenuThumb guibg=black
-
-"Question |hit-enter| prompt and yes/no questions
-hi Question guifg=yellow guibg=gray10 gui=bold
-
-"Search Last search pattern highlighting (see 'hlsearch'). Also used for highlighting the current line in the quickfix window and similar items that need to stand out.
-hi Search guibg=orange guifg=black
-
-"SpecialKey Meta and special keys listed with ":map", also for text used to show unprintable characters in the text, 'listchars'. Generally: text that is displayed differently from what it really is.
-hi SpecialKey guibg=gray20 guifg=#f95 gui=bold
-
-"SpellBad Word Warsaw that is not recoggized by the spellchecker. |spell| This will be combined with the highlighting used otherwise.
-hi SpellBad gui=undercurl guisp=red
-
-"SpellCap Word that should start with a capital. |spell| This will be combined with the highlighting used otherwise.
-hi SpellCap gui=undercurl guisp=yellow
-
-"SpellLocal Word that is recognized by the spellchecker as one that is used in another region. |spell| This will be combined with the highlighting used otherwise.
-hi SpellLocal gui=undercurl guisp=LightBlue
-
-"SpellRare Word that is recognized by the spellchecker as one that is hardly ever used. |spell| This will be combined with the highlighting used otherwise.
-hi SpellRare gui=undercurl guisp=green
-
-"StatusLine status line of current window
-hi StatusLine guibg=gray20 guifg=white gui=none
-
-"StatusLineNC status lines of not-current windows Note: if this is equal to "StatusLine" Vim will use "^^^" in the status line of the current window.
-hi StatusLineNC guibg=gray10 guifg=grey50 gui=none
-
-"Title titles for output from ":set all", ":autocmd" etc.
-hi Title guifg=red guibg=gray10 gui=bold
-
-"Visual Visual mode selection
-hi Visual gui=none guifg=white guibg=blue ctermfg=white ctermbg=blue cterm=none term=reverse
-
-"VisualNOS Visual mode selection when vim is "Not Owning the Selection". Only X11 Gui's |gui-x11| and |xterm-clipboard| supports this.
-" I do not use this by now (set to strange colors to notice them easily)
-hi VisualNOS gui=underline guifg=yellow guibg=red
-
-"WarningMsg warning messages
-hi WarningMsg guifg=black guibg=#fa0 gui=bold
-
-"WildMenu current match in 'wildmenu' completion
-hi WildMenu guibg=yellow guifg=black gui=bold
-
-"
-"(The following only applies to the terminal version)
-"
-
-"TabLine tab pages line, not active tab page label
-hi TabLine ctermbg=darkgray ctermfg=gray
-
-"TabLineFill tab pages line, where there are no labels
-hi TabLineFill ctermbg=black cterm=none
-
-"TabLineSel tab pages line, active tab page label
-hi TabLineSel ctermbg=gray ctermfg=white
-
-
diff --git a/vim/colors/olgas.vim b/vim/colors/olgas.vim
deleted file mode 100644
index 1d7131e..0000000
--- a/vim/colors/olgas.vim
+++ /dev/null
@@ -1,117 +0,0 @@
-set background=dark
-hi clear
-if exists("syntax_on")
-syntax reset
-endif
-let g:colors_name = "olgas"
-
-" cterm colors
-hi Normal cterm=NONE ctermfg=15 ctermbg=0
-hi Comment cterm=NONE ctermfg=32 ctermbg=NONE
-hi Constant cterm=NONE ctermfg=40 ctermbg=NONE
-hi Identifier cterm=bold ctermfg=11 ctermbg=NONE
-hi Statement cterm=bold ctermfg=196 ctermbg=NONE
-hi PreProc cterm=NONE ctermfg=136 ctermbg=NONE
-hi Type cterm=bold ctermfg=135 ctermbg=NONE
-hi Special cterm=bold ctermfg=51 ctermbg=NONE
-hi Underlined cterm=underline ctermfg=NONE ctermbg=NONE
-hi Ignore cterm=NONE ctermfg=240 ctermbg=NONE
-hi Error cterm=bold ctermfg=15 ctermbg=196
-hi Todo cterm=bold ctermfg=16 ctermbg=11
-hi ColorColumn cterm=NONE ctermfg=NONE ctermbg=17
-hi Conceal cterm=NONE ctermfg=248 ctermbg=NONE
-hi CursorColumn cterm=NONE ctermfg=NONE ctermbg=17
-hi CursorLine cterm=underline ctermfg=NONE ctermbg=17
-hi Directory cterm=NONE ctermfg=11 ctermbg=NONE
-hi DiffAdd cterm=NONE ctermfg=0 ctermbg=14
-hi DiffChange cterm=NONE ctermfg=0 ctermbg=14
-hi DiffText cterm=NONE ctermfg=0 ctermbg=14
-hi ErrorMsg cterm=bold ctermfg=15 ctermbg=196
-hi VertSplit cterm=NONE ctermfg=248 ctermbg=17
-hi Folded cterm=bold ctermfg=15 ctermbg=17
-hi FoldColumn cterm=bold ctermfg=11 ctermbg=17
-hi SignColumn cterm=bold ctermfg=14 ctermbg=17
-hi IncSearch cterm=bold ctermfg=16 ctermbg=208
-hi LineNr cterm=NONE ctermfg=239 ctermbg=NONE
-hi CursorLineNr cterm=bold ctermfg=16 ctermbg=7
-hi MatchParen cterm=bold ctermfg=196 ctermbg=NONE
-hi ModeMsg cterm=bold ctermfg=NONE ctermbg=4
-hi MoreMsg cterm=bold ctermfg=NONE ctermbg=4
-hi NonText cterm=bold ctermfg=4 ctermbg=NONE
-hi PmenuSel cterm=NONE ctermfg=0 ctermbg=14
-hi PmenuSbar cterm=NONE ctermfg=0 ctermbg=14
-hi PmenuThumb cterm=NONE ctermfg=0 ctermbg=14
-hi Question cterm=bold ctermfg=15 ctermbg=2
-hi Search cterm=bold ctermfg=16 ctermbg=11
-hi SpecialKey cterm=bold ctermfg=11 ctermbg=17
-hi SpellBad cterm=underline ctermfg=203 ctermbg=NONE
-hi SpellCap cterm=underline ctermfg=214 ctermbg=NONE
-hi SpellLocal cterm=underline ctermfg=105 ctermbg=NONE
-hi SpellRare cterm=underline ctermfg=112 ctermbg=NONE
-hi StatusLine cterm=NONE ctermfg=NONE ctermbg=NONE
-hi StatusLineNC cterm=NONE ctermfg=241 ctermbg=NONE
-hi Title cterm=bold ctermfg=14 ctermbg=NONE
-hi Visual cterm=bold ctermfg=NONE ctermbg=4
-hi VisualNOS cterm=bold,underline ctermfg=11 ctermbg=196
-hi WarningMsg cterm=bold ctermfg=15 ctermbg=1
-hi WildMenu cterm=bold ctermfg=15 ctermbg=17
-hi TabLine cterm=NONE ctermfg=248 ctermbg=17
-hi TabLineFill cterm=NONE ctermfg=0 ctermbg=17
-hi TabLineSel cterm=bold ctermfg=15 ctermbg=0
-
-"gui colors
-hi Normal gui=NONE guifg=white guibg=black guisp=NONE
-hi Comment gui=NONE guifg=#7799cc guibg=NONE guisp=NONE
-hi Constant gui=NONE guifg=green guibg=NONE guisp=NONE
-hi Identifier gui=bold guifg=yellow guibg=NONE guisp=NONE
-hi Statement gui=bold guifg=orangered guibg=NONE guisp=NONE
-hi PreProc gui=NONE guifg=#ffaa44 guibg=NONE guisp=NONE
-hi Type gui=bold guifg=#aa55ff guibg=NONE guisp=NONE
-hi Special gui=bold guifg=cyan guibg=NONE guisp=NONE
-hi Underlined gui=underline guifg=NONE guibg=NONE guisp=NONE
-hi Ignore gui=NONE guifg=grey20 guibg=NONE guisp=NONE
-hi Error gui=bold guifg=white guibg=red guisp=NONE
-hi Todo gui=bold guifg=black guibg=gold guisp=NONE
-hi ColorColumn gui=NONE guifg=NONE guibg=#000036 guisp=NONE
-hi Conceal gui=NONE guifg=LightGrey guibg=gray20 guisp=NONE
-hi Cursor gui=bold guifg=black guibg=white guisp=NONE
-hi CursorIM gui=underline guifg=yellow guibg=red guisp=NONE
-hi CursorColumn gui=NONE guifg=NONE guibg=#000036 guisp=NONE
-hi CursorLine gui=underline guifg=NONE guibg=#000036 guisp=NONE
-hi Directory gui=NONE guifg=yellow guibg=NONE guisp=NONE
-hi DiffAdd gui=NONE guifg=black guibg=cyan guisp=NONE
-hi DiffChange gui=NONE guifg=black guibg=cyan guisp=NONE
-hi DiffText gui=NONE guifg=black guibg=cyan guisp=NONE
-hi ErrorMsg gui=bold guifg=white guibg=red guisp=NONE
-hi VertSplit gui=NONE guifg=gray20 guibg=#000036 guisp=NONE
-hi Folded gui=bold guifg=white guibg=#000056 guisp=NONE
-hi FoldColumn gui=bold guifg=yellow guibg=#000026 guisp=NONE
-hi SignColumn gui=bold guifg=cyan guibg=#000026 guisp=NONE
-hi IncSearch gui=bold guifg=black guibg=orangered guisp=NONE
-hi LineNr gui=NONE guifg=gray30 guibg=#000026 guisp=NONE
-hi CursorLineNr gui=bold guifg=gray10 guibg=gray60 guisp=NONE
-hi MatchParen gui=bold guifg=red guibg=#000036 guisp=NONE
-hi ModeMsg gui=bold guifg=white guibg=blue guisp=NONE
-hi MoreMsg gui=bold guifg=white guibg=blue guisp=NONE
-hi NonText gui=bold guifg=#5577ee guibg=gray5 guisp=NONE
-hi PmenuSel gui=NONE guifg=black guibg=cyan guisp=NONE
-hi PmenuSbar gui=NONE guifg=black guibg=cyan guisp=NONE
-hi PmenuThumb gui=NONE guifg=black guibg=cyan guisp=NONE
-hi Question gui=bold guifg=white guibg=darkgreen guisp=NONE
-hi Search gui=bold guifg=black guibg=orange guisp=NONE
-hi SpecialKey gui=bold guifg=yellow guibg=gray10 guisp=NONE
-hi SpellBad gui=undercurl guifg=NONE guibg=NONE guisp=red
-hi SpellCap gui=undercurl guifg=NONE guibg=NONE guisp=yellow
-hi SpellLocal gui=undercurl guifg=NONE guibg=NONE guisp=LightBlue
-hi SpellRare gui=undercurl guifg=NONE guibg=NONE guisp=green
-hi StatusLine gui=NONE guifg=NONE guibg=#000026 guisp=NONE
-hi StatusLineNC gui=NONE guifg=gray40 guibg=#000026 guisp=NONE
-hi Title gui=bold guifg=MediumSpringGreen guibg=NONE guisp=NONE
-hi Visual gui=bold guifg=white guibg=blue guisp=NONE
-hi VisualNOS gui=underline guifg=yellow guibg=red guisp=NONE
-hi WarningMsg gui=bold guifg=white guibg=orangered guisp=NONE
-hi WildMenu gui=bold guifg=white guibg=#112266 guisp=NONE
-hi TabLine gui=NONE guifg=black guibg=cyan guisp=NONE
-hi TabLineFill gui=NONE guifg=black guibg=cyan guisp=NONE
-hi TabLineSel gui=NONE guifg=black guibg=cyan guisp=NONE
-