mirror of
https://github.com/maxmx03/solarized.nvim.git
synced 2026-09-10 07:26:26 -04:00
Merge pull request #107 from vec2pt/main
Added support for indentmini.nvim.
This commit is contained in:
commit
3e28afbf18
|
|
@ -192,6 +192,7 @@ require('solarized').setup({
|
|||
navic = true,
|
||||
cmp = true,
|
||||
indentblankline = true,
|
||||
indentmini = true,
|
||||
neotree = true,
|
||||
nvimtree = true,
|
||||
whichkey = true,
|
||||
|
|
|
|||
|
|
@ -216,6 +216,7 @@ DEFAULT CONFIG *solarized.nvim-default-config*
|
|||
navic = true,
|
||||
cmp = true,
|
||||
indentblankline = true,
|
||||
indentmini = true,
|
||||
neotree = true,
|
||||
nvimtree = true,
|
||||
whichkey = true,
|
||||
|
|
|
|||
|
|
@ -28,6 +28,7 @@
|
|||
---@field navic? boolean
|
||||
---@field cmp? boolean
|
||||
---@field indentblankline? boolean
|
||||
---@field indentmini? boolean
|
||||
---@field neotree? boolean
|
||||
---@field nvimtree? boolean
|
||||
---@field whichkey? boolean
|
||||
|
|
@ -108,6 +109,7 @@ return {
|
|||
navic = true,
|
||||
cmp = true,
|
||||
indentblankline = true,
|
||||
indentmini = true,
|
||||
neotree = true,
|
||||
nvimtree = true,
|
||||
whichkey = true,
|
||||
|
|
|
|||
|
|
@ -179,6 +179,8 @@
|
|||
---@field CmpItemKindTypeParameter? vim.api.keyset.highlight
|
||||
---@field IblIndent? vim.api.keyset.highlight
|
||||
---@field IblScope? vim.api.keyset.highlight
|
||||
---@field IndentLine? vim.api.keyset.highlight
|
||||
---@field IndentLineCurrent? vim.api.keyset.highlight
|
||||
---@field NeoTreeTitleBar? vim.api.keyset.highlight
|
||||
---@field NeoTreeNormal? vim.api.keyset.highlight
|
||||
---@field NeoTreeNormalNC? vim.api.keyset.highlight
|
||||
|
|
|
|||
|
|
@ -439,6 +439,11 @@ M.set_highlight = function(colors, config)
|
|||
nvim_set_hl('IblScope', { fg = colors.base01 })
|
||||
end
|
||||
|
||||
if config.plugins.indentmini then
|
||||
nvim_set_hl('IndentLine', { fg = colors.base02 })
|
||||
nvim_set_hl('IndentLineCurrent', { fg = colors.base01 })
|
||||
end
|
||||
|
||||
if config.plugins.neotree then
|
||||
nvim_set_hl('NeoTreeTitleBar', { fg = colors.cyan, bg = colors.mix_cyan })
|
||||
nvim_set_hl(
|
||||
|
|
|
|||
|
|
@ -433,6 +433,11 @@ M.set_highlight = function(colors, config)
|
|||
nvim_set_hl('IblScope', { fg = colors.base1 })
|
||||
end
|
||||
|
||||
if config.plugins.indentmini then
|
||||
nvim_set_hl('IndentLine', { fg = colors.mix_base01 })
|
||||
nvim_set_hl('IndentLineCurrent', { fg = colors.base1 })
|
||||
end
|
||||
|
||||
if config.plugins.neotree then
|
||||
nvim_set_hl('NeoTreeTitleBar', { fg = colors.blue, reverse = true })
|
||||
nvim_set_hl(
|
||||
|
|
|
|||
Loading…
Reference in a new issue