nvim-minimal/lua/plugins/mini.lua
mk 97a90cc1e5 Initial commit: nvim-minimal
A small, fast, portable Neovim config built on bare lazy.nvim (no LazyVim,
no LSPs, no Mason). Vendored `based` colorscheme (GPLv3, self-authored,
derived from vim-vividchalk) so the config loads on any machine with just
nvim + git — the listed treesitter parsers ship prebuilt, so no compiler
is needed for the configured languages.

Plugins: snacks.nvim (picker/explorer/buffers), nvim-treesitter (pinned to
master for the declarative ensure_installed/highlight/indent API), blink.cmp
(buffer+path completion, prebuilt binary), lualine, gitsigns, mini.align/
comment/surround.

Personal keymaps ported: jj/jk/kj/чя escape, ж -> :, Russian langmap, arrow
disables, bracket-return expansions, gc/sa-sd-sr/gz-gZ.
2026-07-28 03:23:41 +03:00

26 lines
570 B
Lua

-- echasnovski/mini.*: small, dependency-free editing utilities.
return {
{
"echasnovski/mini.align",
keys = {
{ "gz", mode = { "n", "x" } },
{ "gZ", mode = { "n", "x" } },
},
opts = {
mappings = {
start = "gz",
start_with_preview = "gZ",
},
},
},
{
"echasnovski/mini.comment",
event = "VeryLazy",
opts = {},
},
{
"echasnovski/mini.surround",
event = "VeryLazy",
opts = {},
},
}