mirror of
https://github.com/nix-community/nixvim.git
synced 2025-06-22 08:53:28 +02:00
19 lines
298 B
Nix
19 lines
298 B
Nix
|
{
|
||
|
empty = {
|
||
|
plugins.zellij.enable = true;
|
||
|
};
|
||
|
|
||
|
defaults = {
|
||
|
plugins.zellij = {
|
||
|
enable = true;
|
||
|
|
||
|
settings = {
|
||
|
path = "zellij";
|
||
|
replaceVimWindowNavigationKeybinds = false;
|
||
|
vimTmuxNavigatorKeybinds = false;
|
||
|
debug = false;
|
||
|
};
|
||
|
};
|
||
|
};
|
||
|
}
|