re-organized the dir and divided the init.lua into smaller plugins files

This commit is contained in:
Jeremie Fraeys 2023-11-07 15:30:16 -05:00
parent 8bce42bec4
commit 8623090268
15 changed files with 373 additions and 420 deletions

View 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 },
},
}