Merge pull request #299 from saccarosium/master
Fix don't interrupt the cursorline
This commit is contained in:
commit
b7645942bf
1 changed files with 5 additions and 5 deletions
|
@ -103,7 +103,7 @@ if exists('g:loaded_nvim_treesitter')
|
||||||
if has('nvim-0.8.1')
|
if has('nvim-0.8.1')
|
||||||
" # Misc
|
" # Misc
|
||||||
hi! link @punctuation.delimiter Delimiter
|
hi! link @punctuation.delimiter Delimiter
|
||||||
hi! link @punctuation.bracket Normal
|
hi! link @punctuation.bracket DraculaFg
|
||||||
hi! link @punctuation.special Special
|
hi! link @punctuation.special Special
|
||||||
" # Constants
|
" # Constants
|
||||||
hi! link @constant Constant
|
hi! link @constant Constant
|
||||||
|
@ -121,7 +121,7 @@ if exists('g:loaded_nvim_treesitter')
|
||||||
hi! link @parameter DraculaOrangeItalic
|
hi! link @parameter DraculaOrangeItalic
|
||||||
hi! link @parameter.reference DraculaOrange
|
hi! link @parameter.reference DraculaOrange
|
||||||
hi! link @field DraculaOrange
|
hi! link @field DraculaOrange
|
||||||
hi! link @property Normal
|
hi! link @property DraculaFg
|
||||||
hi! link @constructor DraculaCyan
|
hi! link @constructor DraculaCyan
|
||||||
" # Keywords
|
" # Keywords
|
||||||
hi! link @label DraculaPurpleItalic
|
hi! link @label DraculaPurpleItalic
|
||||||
|
@ -129,10 +129,10 @@ if exists('g:loaded_nvim_treesitter')
|
||||||
hi! link @keyword.operator Operator
|
hi! link @keyword.operator Operator
|
||||||
hi! link @exception DraculaPurple
|
hi! link @exception DraculaPurple
|
||||||
" # Variable
|
" # Variable
|
||||||
hi! link @variable Normal
|
hi! link @variable DraculaFg
|
||||||
hi! link @variable.builtin DraculaPurpleItalic
|
hi! link @variable.builtin DraculaPurpleItalic
|
||||||
" # Text
|
" # Text
|
||||||
hi! link @text Normal
|
hi! link @text DraculaFg
|
||||||
hi! link @text.strong DraculaFgBold
|
hi! link @text.strong DraculaFgBold
|
||||||
hi! link @text.emphasis DraculaFg
|
hi! link @text.emphasis DraculaFg
|
||||||
hi! link @text.underline Underlined
|
hi! link @text.underline Underlined
|
||||||
|
@ -143,7 +143,7 @@ if exists('g:loaded_nvim_treesitter')
|
||||||
hi! link @text.diff.delete DiffDelete
|
hi! link @text.diff.delete DiffDelete
|
||||||
" # Tags
|
" # Tags
|
||||||
hi! link @tag DraculaCyan
|
hi! link @tag DraculaCyan
|
||||||
hi! link @tag.delimiter Normal
|
hi! link @tag.delimiter DraculaFg
|
||||||
" HTML and JSX tag attributes. By default, this group is linked to TSProperty,
|
" HTML and JSX tag attributes. By default, this group is linked to TSProperty,
|
||||||
" which in turn links to Identifer (white).
|
" which in turn links to Identifer (white).
|
||||||
hi! link @tag.attribute DraculaGreenItalic
|
hi! link @tag.attribute DraculaGreenItalic
|
||||||
|
|
Loading…
Reference in a new issue