Split up neonvim configuration into lua files rather than lua heredoc

This commit is contained in:
2025-04-05 16:37:09 -04:00
committed by Andrew R. M.
parent 673500eea6
commit 8de18fd135
3 changed files with 95 additions and 58 deletions

View File

@@ -0,0 +1,8 @@
-- Configure the 'indent-blankline' plugin
-- Look at configuring this for rainbow blocks at some point
require('ibl').setup{
enabled = false,
indent = {
char = '|'
}
}