zellij-nav
URL: https://github.com/swaits/zellij-nav.nvim/
Maintainers: Gaetan Lepage
Seamless navigation between Neovim windows and Zellij panes.
plugins.zellij-nav.enable
Whether to enable zellij-nav.
Type: boolean
Default:
false
Example:
true
Declared by:
plugins.zellij-nav.package
The zellij-nav package to use.
Type: package
Default:
pkgs.vimPlugins.zellij-nav-nvim
Declared by:
plugins.zellij-nav.autoLoad
Whether to automatically load zellij-nav when neovim starts.
Type: boolean
Default:
false when lazy-loading is enabled.
Example:
false
Declared by:
plugins.zellij-nav.callSetup
Whether to generate the standard require('zellij-nav').setup(...) call for this plugin.
By default, this follows the plugin’s built-in behavior. Set this to false
to disable the generated setup call, or to true to force it even when the
plugin would only call it conditionally.
Type: null or boolean
Default:
null
Declared by:
plugins.zellij-nav.settings
Options provided to the require('zellij-nav').setup function.
Type: lua value
Default:
{ }
Example:
{
callback = lib.nixvim.mkRaw ''
function()
print('nixvim')
end
'';
foo_bar = 42;
hostname = "localhost:8080";
}
Declared by: