1
0
Fork 0
mirror of https://github.com/nix-community/nixvim.git synced 2025-11-08 19:46:06 +01:00
nixvim/tests/test-sources/plugins/utils/tmux-navigator.nix
2024-03-07 19:44:13 +01:00

19 lines
306 B
Nix

{
# Empty configuration
empty = {
plugins.tmux-navigator.enable = true;
};
# Activate all settings
defaults = {
plugins.tmux-navigator = {
enable = true;
tmuxNavigatorSaveOnSwitch = 2;
tmuxNavigatorDisableWhenZoomed = 1;
tmuxNavigatorNoWrap = 1;
};
};
}