diff options
author | HampusM <hampus@hampusmat.com> | 2024-03-16 12:19:18 +0100 |
---|---|---|
committer | HampusM <hampus@hampusmat.com> | 2024-03-16 12:19:18 +0100 |
commit | 25ea4d85f2edc790c2210b1982aa9fadf037b4dc (patch) | |
tree | cc29e014675e15474555a1454237763544061f9d | |
parent | cd96c873de2a551f00b3c1e138f2fd509b538b60 (diff) |
fix indentation lines
-rw-r--r-- | lua/config.lua | 2 | ||||
-rw-r--r-- | lua/plugins.lua | 10 |
2 files changed, 9 insertions, 3 deletions
diff --git a/lua/config.lua b/lua/config.lua index 68eeda3..a6de657 100644 --- a/lua/config.lua +++ b/lua/config.lua @@ -61,8 +61,6 @@ vim.g.nerdtree_tabs_open_on_console_startup = 1 vim.g.NERDTreeWinSize = 40 -vim.g.indent_blankline_char = '¦' - -- Custom globals vim.g.is_term_open = 0 vim.g.terminal_height = 12 diff --git a/lua/plugins.lua b/lua/plugins.lua index 781705e..390fcf5 100644 --- a/lua/plugins.lua +++ b/lua/plugins.lua @@ -11,7 +11,15 @@ return require("packer").startup(function(use) -- Style use "https://git.hampusmat.com/ayu-vim" use "vim-airline/vim-airline" - use "lukas-reineke/indent-blankline.nvim" + use { + "lukas-reineke/indent-blankline.nvim", + tag = "v3.5.3", + config = function() + require("ibl").setup { + indent = { char = '¦' } + } + end + } -- Coc use {"neoclide/coc.nvim", branch = "release"} |