mirror of
https://github.com/nix-community/nixvim.git
synced 2025-06-22 00:48:58 +02:00
Add missing settings: - preserve_zoom - no_mappings Include upstream's documentation. Deprecate old option names.
21 lines
368 B
Nix
21 lines
368 B
Nix
{
|
|
# Empty configuration
|
|
empty = {
|
|
plugins.tmux-navigator.enable = true;
|
|
};
|
|
|
|
# Activate all settings
|
|
defaults = {
|
|
plugins.tmux-navigator = {
|
|
enable = true;
|
|
|
|
settings = {
|
|
save_on_switch = 2;
|
|
disable_when_zoomed = true;
|
|
preserve_zoom = true;
|
|
no_wrap = true;
|
|
no_mappings = true;
|
|
};
|
|
};
|
|
};
|
|
}
|