Skip to content

Commit 4e85f54

Browse files
committed
feat(nvim): indent textobject
1 parent d168de1 commit 4e85f54

File tree

2 files changed

+15
-0
lines changed

2 files changed

+15
-0
lines changed

.config/nvim/init.lua

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -663,6 +663,20 @@ require("lazy").setup({
663663
},
664664
},
665665

666+
-- mini.indentscope (https://github.com/echasnovski/mini.indentscope)
667+
{
668+
"echasnovski/mini.indentscope",
669+
event = "VeryLazy",
670+
config = function()
671+
require("mini.indentscope").setup({
672+
draw = {
673+
animation = require("mini.indentscope").gen_animation.none(),
674+
},
675+
symbol = "",
676+
})
677+
end,
678+
},
679+
666680
-- neotest (https://github.com/nvim-neotest/neotest)
667681
{
668682
"nvim-neotest/neotest",

.config/nvim/lazy-lock.json

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -20,6 +20,7 @@
2020
"mason-lspconfig.nvim": { "branch": "main", "commit": "3ba1b92b771f33256b4969d696b82c8ae7075364" },
2121
"mason.nvim": { "branch": "main", "commit": "e110bc3be1a7309617cecd77bfe4bf86ba1b8134" },
2222
"mini.bufremove": { "branch": "main", "commit": "020243bfed8c8b941f2c20626faf3ea39c0c0e1b" },
23+
"mini.indentscope": { "branch": "main", "commit": "1222393d9c5e8d92b913ccab6701a7164b21781c" },
2324
"mini.nvim": { "branch": "main", "commit": "910e49d2d45e9d32c815d16cce6cea7c3b43cecf" },
2425
"neo-tree.nvim": { "branch": "v2.x", "commit": "80dc74d081823649809f78370fa5b204aa9a853a" },
2526
"neotest": { "branch": "master", "commit": "5caac5cc235d495a2382bc2980630ef36ac87032" },

0 commit comments

Comments
 (0)