mirror of
https://github.com/ryan4yin/nix-config.git
synced 2026-03-24 18:31:43 +01:00
17 lines
368 B
Lua
17 lines
368 B
Lua
return {
|
|
"lukas-reineke/indent-blankline.nvim",
|
|
config = function()
|
|
vim.opt.list = true
|
|
vim.opt.listchars:append("space:⋅")
|
|
vim.opt.listchars:append("eol:↴")
|
|
|
|
require("indent_blankline").setup({
|
|
char = "▏",
|
|
show_end_of_line = true,
|
|
space_char_blankline = " ",
|
|
show_current_context = true,
|
|
show_current_context_start = true,
|
|
})
|
|
end,
|
|
}
|