- commit
- e35f365
- parent
- a9e4f76
- author
- Eric Bower
- date
- 2024-12-20 12:10:20 -0500 EST
chore: nvim
2 files changed,
+4,
-2
+1,
-1
1@@ -41,7 +41,7 @@ local autocmds = {
2 { 'FileType', 'markdown', 'setlocal wrap tw=79 formatoptions+=t tabstop=2 shiftwidth=2 softtabstop=2' },
3 },
4 wraptextfiles = {
5- { 'FileType', 'text', 'setlocal wrap' },
6+ { 'FileType', 'text', 'setlocal wrap tw=79 formatoptions+=t tabstop=2 shiftwidth=2 softtabstop=2' },
7 },
8 }
9
+3,
-1
1@@ -50,7 +50,9 @@ require("lazy").setup({
2 {
3 'lukas-reineke/indent-blankline.nvim',
4 config = function()
5- require("ibl").setup()
6+ require("ibl").setup({
7+ scope = { enabled = false },
8+ })
9 end
10 },
11 {