Split up neonvim configuration into lua files rather than lua heredoc

This commit is contained in:
2024-02-15 20:13:01 -05:00
parent 0d5d35d5e1
commit c97ef61d30
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 = '|'
}
}