Moved ts tools to seperate file

This commit is contained in:
2023-09-29 20:04:58 +02:00
parent 47b7885699
commit 4541f0fba0
4 changed files with 73 additions and 54 deletions

View File

@@ -1,17 +1,22 @@
return {
"lukas-reineke/indent-blankline.nvim",
main = "ibl",
event = { "BufReadPre", "BufNewFile" },
config = function()
local blankline = require("indent_blankline")
local blankline = require("ibl")
vim.opt.list = true
vim.opt.listchars:append("space:⋅")
blankline.setup({
show_end_of_line = false,
space_char_blankline = " ",
show_current_context = true,
show_current_context_start = true,
indent = {
char = "",
highlight = { "Function", "Label" },
},
-- show_end_of_line = false,
-- space_char_blankline = " ",
-- show_current_context = true,
-- show_current_context_start = true,
})
end,
}