AutoYADM commit: 2024-12-16 15:55:04

This commit is contained in:
Daniel Fichtinger 2024-12-16 15:55:04 -05:00
parent dda1bbc262
commit d8d50676e7
4 changed files with 24 additions and 11 deletions

View file

@ -19,9 +19,9 @@
"fzf-lua": { "branch": "main", "commit": "86faa5a23e7158c2f49941591c0889c3746389da" },
"git-conflict.nvim": { "branch": "main", "commit": "4bbfdd92d547d2862a75b4e80afaf30e73f7bbb4" },
"grug-far.nvim": { "branch": "main", "commit": "11d0fbd6fff6f4e394af95319deeaab4ef88ce97" },
"guess-indent.nvim": { "branch": "main", "commit": "6cd61f7a600bb756e558627cd2e740302c58e32d" },
"image.nvim": { "branch": "master", "commit": "5f8fceca2d1be96a45b81de21c2f98bf6084fb34" },
"inc-rename.nvim": { "branch": "main", "commit": "f4e13df6e2d0b3177a7305dbc1cc7f7ea44b94f1" },
"indent-o-matic": { "branch": "master", "commit": "4d11e98f523d3c4500b1dc33f0d1a248a4f69719" },
"lazy.nvim": { "branch": "main", "commit": "7e6c863bc7563efbdd757a310d17ebc95166cef3" },
"lazydev.nvim": { "branch": "main", "commit": "f59bd14a852ca43db38e3662395354cb2a9b13e0" },
"ltex_extra.nvim": { "branch": "master", "commit": "24acd044ce7a26b3cdb537cbd094de37c3e1ac45" },

View file

@ -1,4 +0,0 @@
return {
"nmac427/guess-indent.nvim",
opts = {},
}

View file

@ -1,9 +1,17 @@
return {
"folke/snacks.nvim",
local spec = {
guess = {
"nmac427/guess-indent.nvim",
opts = {},
},
matic = {
"Darazaki/indent-o-matic",
opts = {
indent = {
enabled = true,
only_current = true,
max_lines = 2048,
standard_widths = { 2, 4, 8 },
skip_multiline = true,
},
},
}
return spec.matic

View file

@ -0,0 +1,9 @@
return {
"folke/snacks.nvim",
opts = {
indent = {
enabled = true,
only_current = true,
},
},
}