diff options
author | Minijackson <minijackson@riseup.net> | 2023-10-08 16:11:02 +0200 |
---|---|---|
committer | Minijackson <minijackson@riseup.net> | 2023-10-08 16:11:02 +0200 |
commit | 51ad7ccbc5827c4f269ae039f0f7c83bd50db968 (patch) | |
tree | 1079719835877a31a70cc7dbe2fbb472ca9626e7 /dotfiles/vim/lua/myConfig.lua | |
parent | 0d6f5831b6f458d02c641ad050de3f8fb21f2247 (diff) | |
download | nixos-config-reborn-51ad7ccbc5827c4f269ae039f0f7c83bd50db968.tar.gz nixos-config-reborn-51ad7ccbc5827c4f269ae039f0f7c83bd50db968.zip |
dotfiles/vim: use new indent blankline plugin setup
Diffstat (limited to 'dotfiles/vim/lua/myConfig.lua')
-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 |