Skip to content

Commit

Permalink
Neovim: added indent-blankline plugin
Browse files Browse the repository at this point in the history
  • Loading branch information
Bryce Kellogg committed Dec 10, 2024
1 parent 312deda commit 3f22e90
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 4 deletions.
6 changes: 3 additions & 3 deletions private_dot_config/nvim/colors/custom.lua
Original file line number Diff line number Diff line change
Expand Up @@ -352,9 +352,9 @@ vim.api.nvim_set_hl(0, 'LualineWinbarInactive_c', {fg=fgDefault, bg=bgDefault})
vim.api.nvim_set_hl(0, 'LualineWinbarInactive_x', {fg=fgDefault, bg=bgDefault})


-- IndentBlankline Specific Groups (:help indent-blankline-highlights) --
-------------------------------------------------------------------------
vim.api.nvim_set_hl(0, 'IndentBlanklineChar', {fg=bgLight})
-- IndentBlankline Specific Groups (:help ibl.highlights) --
------------------------------------------------------------
vim.api.nvim_set_hl(0, 'IblIndent', {fg=bgLight})


-- Incline Floating Winbar Specific Groups (:help incline-config-highlight) --
Expand Down
9 changes: 8 additions & 1 deletion private_dot_config/nvim/lua/plugins/indent-blankline.lua
Original file line number Diff line number Diff line change
Expand Up @@ -3,5 +3,12 @@
return {{
"lukas-reineke/indent-blankline.nvim",
event = 'BufAdd',
enabled = false, -- causing UI glitches
main = 'ibl',
config = true,
opts = {
indent = {
char = ''
},
scope = {enabled = false},
},
}}

0 comments on commit 3f22e90

Please sign in to comment.