refactor(nvim): disable animation for mini.indentscope

chezmoi
sgoudham 2 years ago
parent ccd4a09790
commit 8556931154
Signed by: hammy
GPG Key ID: 44E818FD5457EEA4

@ -5,16 +5,15 @@ return {
-- add gc/gcc actions, gc textobject -- add gc/gcc actions, gc textobject
require("mini.comment").setup({}) require("mini.comment").setup({})
-- autochange dir
-- require("mini.misc").setup({})
-- MiniMisc.setup_auto_root()
-- highlight word under cursor -- highlight word under cursor
require("mini.cursorword").setup({ delay = 0 }) require("mini.cursorword").setup({ delay = 0 })
-- indent lines, `i` textobject, `]i`/`[i` motions -- indent lines, `i` textobject, `]i`/`[i` motions
require("mini.indentscope").setup({ require("mini.indentscope").setup({
draw = { delay = 0 }, draw = {
delay = 0,
animation = require("mini.indentscope").gen_animation.none(),
},
symbol = "", symbol = "",
}) })
end, end,

Loading…
Cancel
Save