refactor config
This commit is contained in:
commit
4f0e213f4a
155 changed files with 13983 additions and 0 deletions
25
config/nvim.old/lua/plugins/indent-lines.lua
Normal file
25
config/nvim.old/lua/plugins/indent-lines.lua
Normal file
|
|
@ -0,0 +1,25 @@
|
|||
local function config()
|
||||
|
||||
-- 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 = false
|
||||
}
|
||||
|
||||
-- vim.g.indent_blankline_char_list = {"│"}
|
||||
-- vim.g.indentLine_enabled = 1
|
||||
vim.g.indent_blankline_show_trailing_blankline_indent = false
|
||||
vim.g.indent_blankline_filetype_exclude = {
|
||||
"help", "terminal", "dashboard", "nvim-tree"
|
||||
}
|
||||
vim.g.indent_blankline_buftype_exclude = {"terminal"}
|
||||
vim.g.indent_blankline_show_first_indent_level = false
|
||||
vim.g.indent_blankline_use_treesitter = true
|
||||
|
||||
end
|
||||
|
||||
return {"lukas-reineke/indent-blankline.nvim", config = config}
|
||||
Loading…
Add table
Add a link
Reference in a new issue