🪴 my neovim config:)
1
fork

Configure Feed

Select the types of activity you want to include in your feed.

mini: disable `mini.ai`

robin 673de220 38164d31

-19
-19
config/config/mini.lua
··· 1 1 local augroup = vim.augroup("editor:mini", true) 2 2 3 3 augroup("VimEnter", nil, { once = true }, function() 4 - require("mini.ai").setup({ 5 - mappings = { 6 - -- Main textobject prefixes 7 - around = "a", 8 - inside = "i", 9 - 10 - -- Next/last variants 11 - around_next = "an", 12 - inside_next = "in", 13 - around_last = "al", 14 - inside_last = "il", 15 - 16 - -- Move cursor to corresponding edge of `a` textobject 17 - goto_left = "g[", 18 - goto_right = "g]", 19 - }, 20 - }) 21 - end) 22 - augroup("VimEnter", nil, { once = true }, function() 23 4 require("mini.align").setup() 24 5 end) 25 6 augroup("VimEnter", nil, { once = true }, function()