Moved ts tools to seperate file
This commit is contained in:
@@ -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,
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user