1
0
Fork 0
mirror of https://github.com/nix-community/nixvim.git synced 2025-11-08 11:36:07 +01:00

plugins/mini-basics: init

This commit is contained in:
Heitor Augusto 2025-11-01 23:35:58 -03:00 committed by Austin Horstman
parent deacccdecd
commit ad3f508f7b
2 changed files with 55 additions and 0 deletions

View file

@ -0,0 +1,29 @@
{
empty = {
plugins.mini-basics.enable = true;
};
defaults = {
plugins.mini-basics = {
enable = true;
settings = {
options = {
basic = true;
extra_ui = false;
win_borders = "auto";
};
mappings = {
basic = true;
option_toggle_prefix = "\\";
windows = false;
move_with_alt = false;
};
autocommands = {
basic = true;
relnum_in_visual_mode = false;
};
silent = false;
};
};
};
}