nix-community.nixvim/tests/test-sources/plugins/utils/tmux-navigator.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

22 lines
368 B
Nix
Raw Normal View History

{
# Empty configuration
empty = {
plugins.tmux-navigator.enable = true;
};
2024-03-07 19:44:13 +01:00
# 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;
};
};
};
}