Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
17 changes: 12 additions & 5 deletions vim/colors/onehalfdark.vim
Original file line number Diff line number Diff line change
Expand Up @@ -75,8 +75,8 @@ call s:h("DiffChange", s:yellow, "", "")
call s:h("DiffDelete", s:red, "", "")
call s:h("DiffText", s:blue, "", "")

call s:h("IncSearch", s:bg, s:yellow, "")
call s:h("Search", s:bg, s:yellow, "")
call s:h("IncSearch", s:white, s:red, "underline")
call s:h("Search", s:white, s:red, "")

call s:h("ErrorMsg", s:fg, "", "")
call s:h("ModeMsg", s:fg, "", "")
Expand All @@ -85,7 +85,7 @@ call s:h("WarningMsg", s:red, "", "")
call s:h("Question", s:purple, "", "")

call s:h("Pmenu", s:bg, s:fg, "")
call s:h("PmenuSel", s:fg, s:blue, "")
call s:h("PmenuSel", s:comment_fg, s:gutter_bg, "")
call s:h("PmenuSbar", "", s:selection, "")
call s:h("PmenuThumb", "", s:fg, "")

Expand All @@ -107,8 +107,8 @@ call s:h("ColorColumn", "", s:color_col, "")
call s:h("Conceal", s:fg, "", "")
call s:h("Directory", s:blue, "", "")
call s:h("VertSplit", s:vertsplit, s:vertsplit, "")
call s:h("Folded", s:fg, "", "")
call s:h("FoldColumn", s:fg, "", "")
call s:h("Folded", s:comment_fg, "", "")
call s:h("FoldColumn", s:comment_fg, "", "")
call s:h("SignColumn", s:fg, "", "")

call s:h("MatchParen", s:blue, "", "underline")
Expand Down Expand Up @@ -196,6 +196,13 @@ hi link gitcommitSelectedArrow gitcommitSelectedFile
hi link gitcommitUnmergedArrow gitcommitUnmergedFile
" }

" Markdown {
call s:h("mkdCode", s:green, "", "")
call s:h("mkdLink", s:blue, "", "underline")
call s:h("mkdURL", s:green, "", "underline")
call s:h("mkdBlockQuote", s:comment_fg, "", "")
" }

" Fix colors in neovim terminal buffers {
if has('nvim')
let g:terminal_color_0 = s:black.gui
Expand Down
24 changes: 16 additions & 8 deletions vim/colors/onehalflight.vim
Original file line number Diff line number Diff line change
Expand Up @@ -24,9 +24,10 @@ let s:yellow = { "gui": "#c18401", "cterm": "136" }
let s:blue = { "gui": "#0184bc", "cterm": "31" }
let s:purple = { "gui": "#a626a4", "cterm": "127" }
let s:cyan = { "gui": "#0997b3", "cterm": "31" }
let s:white = { "gui": "#fafafa", "cterm": "231" }
let s:white = { "gui": "#f3f3f3", "cterm": "231" }
let s:text = { "gui": "#444444", "cterm": "231" }

let s:fg = s:black
let s:fg = s:text
let s:bg = s:white

let s:comment_fg = { "gui": "#a0a1a7", "cterm": "247" }
Expand Down Expand Up @@ -75,8 +76,8 @@ call s:h("DiffChange", s:yellow, "", "")
call s:h("DiffDelete", s:red, "", "")
call s:h("DiffText", s:blue, "", "")

call s:h("IncSearch", s:bg, s:yellow, "")
call s:h("Search", s:bg, s:yellow, "")
call s:h("IncSearch", s:white, s:red, "underline")
call s:h("Search", s:white, s:red, "")

call s:h("ErrorMsg", s:fg, "", "")
call s:h("ModeMsg", s:fg, "", "")
Expand All @@ -85,7 +86,7 @@ call s:h("WarningMsg", s:red, "", "")
call s:h("Question", s:purple, "", "")

call s:h("Pmenu", s:fg, s:cursor_line, "")
call s:h("PmenuSel", s:bg, s:blue, "")
call s:h("PmenuSel", s:comment_fg, s:gutter_bg, "")
call s:h("PmenuSbar", "", s:cursor_line, "")
call s:h("PmenuThumb", "", s:comment_fg, "")

Expand All @@ -107,13 +108,13 @@ call s:h("ColorColumn", "", s:color_col, "")
call s:h("Conceal", s:fg, "", "")
call s:h("Directory", s:blue, "", "")
call s:h("VertSplit", s:vertsplit, s:vertsplit, "")
call s:h("Folded", s:fg, "", "")
call s:h("FoldColumn", s:fg, "", "")
call s:h("Folded", s:comment_fg, "", "")
call s:h("FoldColumn", s:comment_fg, "", "")
call s:h("SignColumn", s:fg, "", "")

call s:h("MatchParen", s:blue, "", "underline")
call s:h("SpecialKey", s:fg, "", "")
call s:h("Title", s:green, "", "")
call s:h("Title", s:black, "", "bold")
call s:h("WildMenu", s:fg, "", "")
" }

Expand Down Expand Up @@ -196,6 +197,13 @@ hi link gitcommitSelectedArrow gitcommitSelectedFile
hi link gitcommitUnmergedArrow gitcommitUnmergedFile
" }

" Markdown {
call s:h("mkdCode", s:green, "", "")
call s:h("mkdLink", s:blue, "", "underline")
call s:h("mkdURL", s:green, "", "underline")
call s:h("mkdBlockQuote", s:comment_fg, "", "")
" }

" Fix colors in neovim terminal buffers {
if has('nvim')
let g:terminal_color_0 = s:black.gui
Expand Down