Skip to content

Commit

Permalink
Add qfLineNr highlight
Browse files Browse the repository at this point in the history
  • Loading branch information
liuchengxu committed Mar 15, 2019
1 parent 6fd8f2a commit ece3516
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 3 deletions.
6 changes: 5 additions & 1 deletion colors/space_vim_theme.vim
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
" Maintainer: Liu-Cheng Xu <[email protected]>
" Website: https://github.com/liuchengxu/space-vim-theme
" License: Vim License (see `:help license`)
" Last Updated: Wed Mar 13 15:25:28 2019
" Last Updated: Fri Mar 15 21:43:59 2019

if !(has('termguicolors') && &termguicolors) && !has('gui_running')
\ && (!exists('&t_Co') || &t_Co < 256)
Expand Down Expand Up @@ -62,6 +62,7 @@ if &background ==# 'dark'
hi PmenuThumb ctermfg=NONE ctermbg=60 guifg=NONE guibg=#5d4d7a guisp=NONE cterm=NONE gui=NONE
hi Question ctermfg=173 ctermbg=NONE guifg=#e18254 guibg=NONE guisp=NONE cterm=NONE,bold gui=NONE,bold
hi! link QuickFixLine Search
hi! link qfLineNr Type
hi Search ctermfg=70 ctermbg=235 guifg=#67b11d guibg=#292b2e guisp=NONE cterm=NONE,bold,reverse gui=NONE,bold,reverse
hi SpecialKey ctermfg=170 ctermbg=NONE guifg=#bc6ec5 guibg=NONE guisp=NONE cterm=NONE gui=NONE
hi SpellBad ctermfg=196 ctermbg=NONE guifg=#f2241f guibg=NONE guisp=#f2241f cterm=NONE,underline gui=NONE,italic,undercurl
Expand Down Expand Up @@ -663,6 +664,7 @@ hi PmenuSel ctermfg=NONE ctermbg=189 guifg=NONE guibg=#c8c6dd guisp=NONE cterm=N
hi PmenuThumb ctermfg=NONE ctermbg=189 guifg=NONE guibg=#d3d3e7 guisp=NONE cterm=NONE gui=NONE
hi Question ctermfg=166 ctermbg=NONE guifg=#b46843 guibg=NONE guisp=NONE cterm=NONE,bold gui=NONE,bold
hi! link QuickFixLine Search
hi! link qfLineNr Type
hi Search ctermfg=70 ctermbg=231 guifg=#67b11d guibg=#fbf8ef guisp=NONE cterm=NONE,bold,reverse gui=NONE,bold,reverse
hi SpecialKey ctermfg=89 ctermbg=NONE guifg=#6c3163 guibg=NONE guisp=NONE cterm=NONE gui=NONE
hi SpellBad ctermfg=196 ctermbg=NONE guifg=#f2241f guibg=NONE guisp=#f2241f cterm=NONE,underline gui=NONE,italic,undercurl
Expand Down Expand Up @@ -1313,6 +1315,7 @@ finish
" PmenuThumb none purple2
" Question orange none bold
" QuickFixLine -> Search
" qfLineNr -> Type
" Search green bg0 bold,reverse
" SpecialKey purple none
" SpellBad red none t=underline g=italic,undercurl s=red
Expand Down Expand Up @@ -1874,6 +1877,7 @@ finish
" PmenuThumb none purple2
" Question orange none bold
" QuickFixLine -> Search
" qfLineNr -> Type
" Search green bg0 bold,reverse
" SpecialKey purple none
" SpellBad red none t=underline g=italic,undercurl s=red
Expand Down
4 changes: 2 additions & 2 deletions doc/space_vim_theme.txt
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ Space-vim theme requires at least 256 colors and supports "true color" terminals
1. Colorscheme options *space_vim-options*

*g:space_vim_filetype_hi_groups*
Set to 1 to include syntax highlighting definitions for several filetypes.
Set to 0 to disable syntax highlighting definitions for several filetypes.
>
let g:space_vim_filetype_hi_groups = 0
<
Expand All @@ -41,7 +41,7 @@ Set to 1 if you want strings in italics.
let g:space_vim_italicize_strings = 0
<
*g:space_vim_plugin_hi_groups*
Set to 1 to include syntax highlighting definitions for a number of popular
Set to 0 to disable syntax highlighting definitions for a number of popular
plugins:
>
let g:space_vim_plugin_hi_groups = 0
Expand Down
1 change: 1 addition & 0 deletions templates/_common.colortemplate
Original file line number Diff line number Diff line change
Expand Up @@ -52,6 +52,7 @@ PmenuThumb none purple2

Question orange none bold
QuickFixLine -> Search
qfLineNr -> Type
Search green bg0 bold,reverse
SpecialKey purple none
SpellBad red none t=underline g=italic,undercurl s=red
Expand Down

0 comments on commit ece3516

Please sign in to comment.