mirror of
https://github.com/NotAShelf/nvf.git
synced 2025-09-16 07:03:28 +00:00
dev: add missing navbuddy icons and keybinds
This commit is contained in:
parent
ef122b1b4d
commit
36cf072920
2 changed files with 42 additions and 33 deletions
|
@ -25,7 +25,13 @@ in {
|
|||
|
||||
navbuddy = {
|
||||
enable = mkEnableOption "navbuddy LSP UI";
|
||||
useDefaultMappings = mkEnableOption "default Navbuddy keybindings (disables user keybinds)";
|
||||
|
||||
# this option is interpreted as null if mkEnableOption is used, and therefore cannot be converted to a string in config.nix
|
||||
useDefaultMappings = mkOption {
|
||||
type = types.bool;
|
||||
default = true;
|
||||
description = "default Navbuddy keybindings (disables user-specified keybinds)";
|
||||
};
|
||||
|
||||
mappings = {
|
||||
close = mkOption {
|
||||
|
@ -351,6 +357,12 @@ in {
|
|||
description = "";
|
||||
};
|
||||
|
||||
interface = mkOption {
|
||||
type = types.str;
|
||||
default = "";
|
||||
description = "";
|
||||
};
|
||||
|
||||
function = mkOption {
|
||||
type = types.str;
|
||||
default = " ";
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue