Files
nvim/after/plugin/indent-blankline.lua
Squibid 339be88db2 kitchen sink:
- add code action previews
- change indent blankline style
- more luasnip snippets
- change default mason stuff
- customize neorg more
- change notify style
- change startpage completely
- add line info to statusline
- change telescope style
- change how todo comments look
- make indentation work via treesitter
2023-10-22 18:17:21 -04:00

11 lines
132 B
Lua

local status_ok, ibl = pcall(require, "ibl")
if not status_ok then
return
end
ibl.setup {
scope = {
enabled = false,
},
}