mirror of
https://github.com/nix-community/nixvim.git
synced 2025-11-08 11:36:07 +01:00
29 lines
560 B
Nix
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;
|
|
};
|
|
};
|
|
};
|
|
}
|