neovim-flake/modules/ui/breadcrumbs/breadcrumbs.nix

504 lines
13 KiB
Nix
Raw Normal View History

{
config,
lib,
...
}: let
inherit (lib.options) mkOption mkEnableOption;
inherit (lib.types) nullOr listOf enum bool str int;
2024-03-10 19:37:49 +01:00
inherit (lib.modules) mkRenamedOptionModule;
inherit (lib.nvim.types) mkPluginSetupOption;
in {
2024-03-10 19:37:49 +01:00
imports = let
renameSetupOpt = oldPath: newPath:
mkRenamedOptionModule
(["vim" "ui" "breadcrumbs" "navbuddy"] ++ oldPath)
(["vim" "ui" "breadcrumbs" "navbuddy" "setupOpts"] ++ newPath);
in [
(renameSetupOpt ["useDefaultMappings"] ["use_default_mappings"])
(renameSetupOpt ["window"] ["window"])
(renameSetupOpt ["nodeMarkers"] ["node_markers"])
(renameSetupOpt ["lsp" "autoAttach"] ["lsp" "auto_attach"])
(renameSetupOpt ["lsp" "preference"] ["lsp" "preference"])
(renameSetupOpt ["sourceBuffer" "followNode"] ["source_buffer" "follow_node"])
(renameSetupOpt ["sourceBuffer" "highlight"] ["source_buffer" "highlight"])
(renameSetupOpt ["sourceBuffer" "reorient"] ["source_buffer" "reorient"])
(renameSetupOpt ["sourceBuffer" "scrolloff"] ["source_buffer" "scrolloff"])
# TODO: every option under icon is renamed to first letter capitalized
(renameSetupOpt ["icon"] ["icon"])
];
2023-07-19 21:49:06 +02:00
options.vim.ui.breadcrumbs = {
enable = mkEnableOption "breadcrumbs";
source = mkOption {
type = nullOr (enum ["nvim-navic"]); # TODO: lspsaga and dropbar
default = "nvim-navic";
description = ''
The source to be used for breadcrumbs component. Null means no breadcrumbs.
'';
};
# maybe this should be an option to *disable* alwaysRender optionally but oh well
# too late
alwaysRender = mkOption {
type = bool;
default = true;
description = "Whether to always display the breadcrumbs component on winbar (always renders winbar)";
};
navbuddy = {
enable = mkEnableOption "navbuddy LSP helper UI. Enabling this option automatically loads and enables nvim-navic";
mappings = {
close = mkOption {
type = str;
default = "<esc>";
description = "keybinding to close Navbuddy UI";
};
nextSibling = mkOption {
type = str;
default = "j";
description = "keybinding to navigate to the next sibling node";
};
previousSibling = mkOption {
type = str;
default = "k";
description = "keybinding to navigate to the previous sibling node";
};
parent = mkOption {
type = str;
default = "h";
description = "keybinding to navigate to the parent node";
};
children = mkOption {
type = str;
2024-03-10 19:37:49 +01:00
default = "l";
description = "keybinding to navigate to the child node";
};
root = mkOption {
type = str;
default = "0";
description = "keybinding to navigate to the root node";
};
visualName = mkOption {
type = str;
default = "v";
description = "visual selection of name";
};
visualScope = mkOption {
type = str;
default = "V";
description = "visual selection of scope";
};
yankName = mkOption {
type = str;
default = "y";
description = "yank the name to system clipboard";
};
yankScope = mkOption {
type = str;
default = "Y";
description = "yank the scope to system clipboard";
};
insertName = mkOption {
type = str;
default = "i";
description = "insert at start of name";
};
insertScope = mkOption {
type = str;
default = "I";
description = "insert at start of scope";
};
appendName = mkOption {
type = str;
default = "a";
description = "insert at end of name";
};
appendScope = mkOption {
type = str;
default = "A";
description = "insert at end of scope";
};
rename = mkOption {
type = str;
default = "r";
description = "rename the node";
};
delete = mkOption {
type = str;
default = "d";
description = "delete the node";
};
foldCreate = mkOption {
type = str;
default = "f";
description = "create a new fold";
};
foldDelete = mkOption {
type = str;
default = "F";
description = "delete the current fold";
};
comment = mkOption {
type = str;
default = "c";
description = "comment the node";
};
select = mkOption {
type = str;
default = "<enter>";
description = "goto selected symbol";
};
moveDown = mkOption {
type = str;
default = "J";
description = "move focused node down";
};
moveUp = mkOption {
type = str;
default = "K";
description = "move focused node up";
};
telescope = mkOption {
type = str;
default = "t";
description = "fuzzy finder at current level";
};
help = mkOption {
type = str;
default = "g?";
description = "open mapping help window";
};
};
2024-03-10 19:37:49 +01:00
setupOpts = mkPluginSetupOption "navbuddy" {
useDefaultMappings = mkOption {
type = bool;
default = true;
description = "use default Navbuddy keybindings (disables user-specified keybinds)";
};
2024-03-10 19:37:49 +01:00
window = {
# size = {}
# position = {}
2024-03-10 19:37:49 +01:00
border = mkOption {
# TODO: let this type accept a custom string
type = enum ["single" "rounded" "double" "solid" "none"];
default = config.vim.ui.borders.globalStyle;
description = "border style to use";
};
2024-03-10 19:37:49 +01:00
scrolloff = mkOption {
type = nullOr int;
default = null;
description = "Scrolloff value within navbuddy window";
};
2024-03-10 19:37:49 +01:00
sections = {
# left section
left = {
/*
size = mkOption {
type = nullOr (intBetween 0 100);
default = null;
description = "size of the left section of Navbuddy UI in percentage (0-100)";
};
*/
border = mkOption {
# TODO: let this type accept a custom string
type = nullOr (enum ["single" "rounded" "double" "solid" "none"]);
default = config.vim.ui.borders.globalStyle;
description = "border style to use for the left section of Navbuddy UI";
};
};
2024-03-10 19:37:49 +01:00
# middle section
mid = {
/*
size = {
type = nullOr (intBetween 0 100);
default = null;
description = "size of the left section of Navbuddy UI in percentage (0-100)";
};
*/
border = mkOption {
# TODO: let this type accept a custom string
type = nullOr (enum ["single" "rounded" "double" "solid" "none"]);
default = config.vim.ui.borders.globalStyle;
description = "border style to use for the middle section of Navbuddy UI";
};
};
2024-03-10 19:37:49 +01:00
# right section
# there is no size option for the right section, it fills the remaining space
right = {
border = mkOption {
# TODO: let this type accept a custom string
type = nullOr (enum ["single" "rounded" "double" "solid" "none"]);
default = config.vim.ui.borders.globalStyle;
description = "border style to use for the right section of Navbuddy UI";
};
preview = mkOption {
type = enum ["leaf" "always" "never"];
default = "leaf";
description = "display mode of the preview on the right section";
};
};
};
};
2024-03-10 19:37:49 +01:00
node_markers = {
enable = mkEnableOption "node markers";
icons = {
leaf = mkOption {
type = str;
default = " ";
description = "";
};
2024-03-10 19:37:49 +01:00
leaf_selected = mkOption {
type = str;
default = " ";
description = "";
};
2024-03-10 19:37:49 +01:00
branch = mkOption {
type = str;
default = " ";
description = "";
};
};
};
2024-03-10 19:37:49 +01:00
lsp = {
auto_attach = mkOption {
type = bool;
default = true;
description = "Whether to attach to LSP server manually";
};
2024-03-10 19:37:49 +01:00
preference = mkOption {
type = nullOr (listOf str);
default = null;
description = "list of lsp server names in order of preference";
};
};
2024-03-10 19:37:49 +01:00
source_buffer = {
followNode = mkOption {
type = bool;
default = true;
description = "keep the current node in focus on the source buffer";
};
2024-03-10 19:37:49 +01:00
highlight = mkOption {
type = bool;
default = true;
description = "highlight the currently focused node";
};
2024-03-10 19:37:49 +01:00
reorient = mkOption {
type = enum ["smart" "top" "mid" "none"];
default = "smart";
description = "reorient buffer after changing nodes";
};
2024-03-10 19:37:49 +01:00
scrolloff = mkOption {
type = nullOr int;
default = null;
description = "scrolloff value when navbuddy is open";
};
};
2024-03-10 19:37:49 +01:00
icons = {
File = mkOption {
type = str;
default = "󰈙 ";
description = "";
};
2024-03-10 19:37:49 +01:00
Module = mkOption {
type = str;
default = " ";
description = "";
};
2024-03-10 19:37:49 +01:00
Namespace = mkOption {
type = str;
default = "󰌗 ";
description = "";
};
2024-03-10 19:37:49 +01:00
Package = mkOption {
type = str;
default = " ";
description = "";
};
2024-03-10 19:37:49 +01:00
Class = mkOption {
type = str;
default = "󰌗 ";
description = "";
};
2024-03-10 19:37:49 +01:00
Property = mkOption {
type = str;
default = " ";
description = "";
};
2024-03-10 19:37:49 +01:00
Field = mkOption {
type = str;
default = " ";
description = "";
};
2024-03-10 19:37:49 +01:00
Constructor = mkOption {
type = str;
default = " ";
description = "";
};
2024-03-10 19:37:49 +01:00
Enum = mkOption {
type = str;
default = "󰕘";
description = "";
};
2024-03-10 19:37:49 +01:00
Interface = mkOption {
type = str;
default = "󰕘";
description = "";
};
2024-03-10 19:37:49 +01:00
Function = mkOption {
type = str;
default = "󰊕 ";
description = "";
};
2024-03-10 19:37:49 +01:00
Variable = mkOption {
type = str;
default = "󰆧 ";
description = "";
};
2024-03-10 19:37:49 +01:00
Constant = mkOption {
type = str;
default = "󰏿 ";
description = "";
};
2024-03-10 19:37:49 +01:00
String = mkOption {
type = str;
default = " ";
description = "";
};
2024-03-10 19:37:49 +01:00
Number = mkOption {
type = str;
default = "󰎠 ";
description = "";
};
2024-03-10 19:37:49 +01:00
Boolean = mkOption {
type = str;
default = " ";
description = "";
};
2024-03-10 19:37:49 +01:00
Array = mkOption {
type = str;
default = "󰅪 ";
description = "";
};
2024-03-10 19:37:49 +01:00
Object = mkOption {
type = str;
default = "󰅩 ";
description = "";
};
2024-03-10 19:37:49 +01:00
Method = mkOption {
type = str;
default = "󰆧 ";
description = "";
};
2024-03-10 19:37:49 +01:00
Key = mkOption {
type = str;
default = "󰌋 ";
description = "";
};
2024-03-10 19:37:49 +01:00
Null = mkOption {
type = str;
default = "󰟢 ";
description = "";
};
2024-03-10 19:37:49 +01:00
EnumMember = mkOption {
type = str;
default = "󰕘 ";
description = "";
};
2024-03-10 19:37:49 +01:00
Struct = mkOption {
type = str;
default = "󰌗 ";
description = "";
};
2024-03-10 19:37:49 +01:00
Event = mkOption {
type = str;
default = " ";
description = "";
};
2024-03-10 19:37:49 +01:00
Operator = mkOption {
type = str;
default = "󰆕 ";
description = "";
};
2024-03-10 19:37:49 +01:00
TypeParameter = mkOption {
type = str;
default = "󰊄 ";
description = "";
};
};
};
2024-03-10 19:37:49 +01:00
# there probably is a better way to do this
# alas, I am not a nix wizard
};
2023-07-19 21:49:06 +02:00
};
}