re-organized the dir and divided the init.lua into smaller plugins files
This commit is contained in:
parent
8bce42bec4
commit
8623090268
15 changed files with 373 additions and 420 deletions
19
lua/custom/plugins/indent.lua
Normal file
19
lua/custom/plugins/indent.lua
Normal file
|
|
@ -0,0 +1,19 @@
|
|||
return {
|
||||
-- Add indentation guides even on blank lines
|
||||
'lukas-reineke/indent-blankline.nvim',
|
||||
-- Enable `lukas-reineke/indent-blankline.nvim`
|
||||
-- See `:help indent_blankline.txt`
|
||||
main = "ibl",
|
||||
opts = {
|
||||
indent = {
|
||||
--[[ highlight = highlight ]]
|
||||
char = "┆",
|
||||
smart_indent_cap = true,
|
||||
},
|
||||
whitespace = {
|
||||
--[[ highlight = highlight, ]]
|
||||
remove_blankline_trail = false,
|
||||
},
|
||||
scope = { enabled = true },
|
||||
},
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue