1
0
Fork 0
mirror of https://github.com/nix-community/nixvim.git synced 2025-11-08 11:36:07 +01:00
nixvim/tests/test-sources/plugins/by-name/mini-basics/default.nix
2025-11-02 12:27:25 +00:00

29 lines
560 B
Nix

{
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;
};
};
};
}