Compare commits
No commits in common. "c7f1772d6564e365ae540c8a6dcbd91376c1c3fb" and "8cdef01d6590416bf133a9b4ba6a51a96eeb6d6e" have entirely different histories.
c7f1772d65
...
8cdef01d65
|
@ -847,8 +847,15 @@ local highlight_groups = {
|
||||||
IndentGuidesOdd = {bg = c_bg_hl},
|
IndentGuidesOdd = {bg = c_bg_hl},
|
||||||
IndentGuidesEven = {bg = c_bg_hl_strong},
|
IndentGuidesEven = {bg = c_bg_hl_strong},
|
||||||
|
|
||||||
--[[ 4.4.7. Netrw ]]
|
--[[ 4.4.7. NERDTree ]]
|
||||||
netrwMarkFile = 'Search',
|
NERDTreeCWD = 'Label',
|
||||||
|
NERDTreeUp = 'Operator',
|
||||||
|
NERDTreeDir = 'Directory',
|
||||||
|
NERDTreeDirSlash = 'Delimiter',
|
||||||
|
NERDTreeOpenable = 'NERDTreeDir',
|
||||||
|
NERDTreeClosable = 'NERDTreeOpenable',
|
||||||
|
NERDTreeExecFile = 'Function',
|
||||||
|
NERDTreeLinkTarget = 'Tag',
|
||||||
|
|
||||||
--[[ 4.4.8. nvim-treesitter ]]
|
--[[ 4.4.8. nvim-treesitter ]]
|
||||||
TSConstBuiltin = 'Constant',
|
TSConstBuiltin = 'Constant',
|
||||||
|
|
|
@ -7,9 +7,7 @@
|
||||||
--[[/* VARS */]]
|
--[[/* VARS */]]
|
||||||
|
|
||||||
--- Which set of colors to use.
|
--- Which set of colors to use.
|
||||||
local has_t_Co = pcall(function() return vim.go.t_Co end)
|
local _USE_256 = tonumber(vim.go.t_Co) > 255 or string.find(vim.env.TERM, '256')
|
||||||
local _USE_256 = (has_t_Co and tonumber(vim.go.t_Co) > 255) or string.find(vim.env.TERM, '256')
|
|
||||||
|
|
||||||
|
|
||||||
--- Indicating nothing for a highlight field.
|
--- Indicating nothing for a highlight field.
|
||||||
local _NONE = 'NONE'
|
local _NONE = 'NONE'
|
||||||
|
|
Loading…
Reference in New Issue