mirror of
https://github.com/nix-community/nixvim.git
synced 2025-06-21 08:35:43 +02:00
19 lines
306 B
Nix
19 lines
306 B
Nix
{
|
|
# Empty configuration
|
|
empty = {
|
|
plugins.tmux-navigator.enable = true;
|
|
};
|
|
|
|
# Actiavte all settings
|
|
defaults = {
|
|
plugins.tmux-navigator = {
|
|
enable = true;
|
|
|
|
tmuxNavigatorSaveOnSwitch = 2;
|
|
|
|
tmuxNavigatorDisableWhenZoomed = 1;
|
|
|
|
tmuxNavigatorNoWrap = 1;
|
|
};
|
|
};
|
|
}
|