diff options
Diffstat (limited to 'dotfiles')
-rw-r--r-- | dotfiles/vim/lua/myConfig.lua | 7 |
1 files changed, 3 insertions, 4 deletions
diff --git a/dotfiles/vim/lua/myConfig.lua b/dotfiles/vim/lua/myConfig.lua index 99e77ca..92073b4 100644 --- a/dotfiles/vim/lua/myConfig.lua +++ b/dotfiles/vim/lua/myConfig.lua | |||
@@ -491,13 +491,12 @@ require("Comment").setup {} | |||
491 | 491 | ||
492 | -- Indent Blankline | 492 | -- Indent Blankline |
493 | 493 | ||
494 | vim.api.nvim_set_hl(0, "IndentBlanklineContextChar", { | 494 | vim.api.nvim_set_hl(0, "IblScope", { |
495 | fg = vim.g.current_gruvbox_colors.aqua[1], | 495 | fg = vim.g.current_gruvbox_colors.aqua[1], |
496 | }) | 496 | }) |
497 | 497 | ||
498 | require("indent_blankline").setup { | 498 | require("ibl").setup { |
499 | show_current_context = true, | 499 | indent = { char = "│" }, |
500 | show_current_context_start = true, | ||
501 | } | 500 | } |
502 | 501 | ||
503 | -- For fugitive's :GBrowse | 502 | -- For fugitive's :GBrowse |