diff options
author | Steven Le Rouzic <slerouzic@siradel.com> | 2023-11-20 11:01:56 +0100 |
---|---|---|
committer | Steven Le Rouzic <slerouzic@siradel.com> | 2023-11-20 11:01:56 +0100 |
commit | 28e359a7b0405bd0060adc20cd7e8df213c4e234 (patch) | |
tree | 84d743135ef4b71c3c4c20604bb35ef747fbb87c /lua/config.lua | |
parent | 19a7891a2c076a320c42f755fb3a88523afee733 (diff) |
Update stuff
Diffstat (limited to 'lua/config.lua')
-rw-r--r-- | lua/config.lua | 11 |
1 files changed, 7 insertions, 4 deletions
diff --git a/lua/config.lua b/lua/config.lua index 677e6cb..a27e424 100644 --- a/lua/config.lua +++ b/lua/config.lua @@ -32,10 +32,13 @@ vim.o.cinoptions = "l1,g0,N-s,(s,U1,w1,Ws" vim.o.list = true vim.o.listchars = "lead:ยท" -require("indent_blankline").setup { - show_current_context = false, - show_current_context_start = false, - char_blankline = " ", +require("ibl").setup { + scope = { + enabled = false, + }, + indent = { + char = " ", + }, } vim.api.nvim_create_autocmd({ "BufWritePre" }, { |