summaryrefslogtreecommitdiff
path: root/lua/config.lua
diff options
context:
space:
mode:
Diffstat (limited to 'lua/config.lua')
-rw-r--r--lua/config.lua11
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" }, {