adding in indent lines

This commit is contained in:
talksik
2023-09-26 10:55:48 -07:00
parent 5c0b922c8b
commit 6e857ea2f3
2 changed files with 12 additions and 0 deletions
@@ -0,0 +1,10 @@
vim.opt.list = true
vim.opt.listchars:append "space:⋅"
vim.opt.listchars:append "eol:↴"
require("indent_blankline").setup {
space_char_blankline = " ",
show_current_context = true,
show_current_context_start = true,
}
+2
View File
@@ -104,5 +104,7 @@ return require('packer').startup(function(use)
"nvim-lua/plenary.nvim", "nvim-lua/plenary.nvim",
}, },
}) })
use("lukas-reineke/indent-blankline.nvim")
end) end)