mirror of
https://github.com/nix-community/nixvim.git
synced 2025-06-20 16:15:43 +02:00
plugins/kitty-navigator: init
This commit is contained in:
parent
73417a761e
commit
e0b3d8bc3a
2 changed files with 38 additions and 0 deletions
13
plugins/by-name/kitty-navigator/default.nix
Normal file
13
plugins/by-name/kitty-navigator/default.nix
Normal file
|
@ -0,0 +1,13 @@
|
|||
{ lib, ... }:
|
||||
lib.nixvim.plugins.mkVimPlugin {
|
||||
name = "kitty-navigator";
|
||||
package = "vim-kitty-navigator";
|
||||
|
||||
globalPrefix = "kitty_navigator_";
|
||||
|
||||
maintainers = [ lib.maintainers.GaetanLepage ];
|
||||
|
||||
settingsExample = {
|
||||
enable_stack_layout = 1;
|
||||
};
|
||||
}
|
|
@ -0,0 +1,25 @@
|
|||
{
|
||||
empty = {
|
||||
plugins.kitty-navigator.enable = true;
|
||||
};
|
||||
|
||||
defaults = {
|
||||
plugins.kitty-navigator = {
|
||||
enable = true;
|
||||
|
||||
settings = {
|
||||
enable_stack_layout = 0;
|
||||
};
|
||||
};
|
||||
};
|
||||
|
||||
example = {
|
||||
plugins.kitty-navigator = {
|
||||
enable = true;
|
||||
|
||||
settings = {
|
||||
enable_stack_layout = 1;
|
||||
};
|
||||
};
|
||||
};
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue