dotfiles/home/.config/nvim/lua/plugins/indent-blankline.lua
2022-10-26 14:08:20 +03:00

9 lines
182 B
Lua

return function()
vim.opt.list = true
require("indent_blankline").setup({
space_char_blankline = " ",
show_current_context = true,
show_current_context_start = true,
})
end