diff options
| author | 2023-04-13 00:39:31 -0400 | |
|---|---|---|
| committer | 2023-04-13 00:39:31 -0400 | |
| commit | 6273b6d43aedc6b00b82e1081db14c39194da765 (patch) | |
| tree | c6b1b1e6f9391696001375cb93ecd34449eefe0c /dot_config/nvim/lua/plugins/mini/init.lua | |
| parent | nvim: add rudimentary treesitter folding support (diff) | |
nvim: redo the whole thing
reasons tm
Diffstat (limited to '')
| -rw-r--r-- | dot_config/nvim/lua/plugins/mini/init.lua | 30 |
1 files changed, 30 insertions, 0 deletions
diff --git a/dot_config/nvim/lua/plugins/mini/init.lua b/dot_config/nvim/lua/plugins/mini/init.lua new file mode 100644 index 0000000..aba0de0 --- /dev/null +++ b/dot_config/nvim/lua/plugins/mini/init.lua @@ -0,0 +1,30 @@ +return { + { + 'echasnovski/mini.nvim', + version = false, -- beta + config = function(_, opts) + for k, v in pairs(opts) do + require ("mini." .. k).setup(v) + end + end, + opts = { + ai = {}, + align = {}, + animate = {}, + basics = {}, + bracketed = {}, + comment = {}, + completion = {}, + cursorword = {}, + indentscope = {}, + jump2d = {}, + move = {}, + splitjoin = {}, + starter = {}, + statusline = {}, + surround = {}, + tabline = {}, + trailspace = {}, + } + }, +} |
