mirror of
https://github.com/NotAShelf/nvf.git
synced 2024-11-01 19:11:15 +00:00
729276c4c5
new file: modules/utility/binds/cheatsheet/cheatsheet.nix new file: modules/utility/binds/cheatsheet/config.nix modified: modules/utility/binds/cheatsheet/default.nix modified: modules/utility/binds/default.nix new file: modules/utility/binds/which-key/config.nix modified: modules/utility/binds/which-key/default.nix new file: modules/utility/binds/which-key/which-key.nix renamed: modules/utility/colorizer.nix -> modules/utility/colorizer/colorizer.nix new file: modules/utility/colorizer/config.nix new file: modules/utility/colorizer/default.nix modified: modules/utility/default.nix modified: modules/utility/gestures/default.nix renamed: modules/utility/gestures/gesture-nvim.nix -> modules/utility/gestures/gesture-nvim/config.nix new file: modules/utility/gestures/gesture-nvim/default.nix new file: modules/utility/gestures/gesture-nvim/gesture-nvim.nix renamed: modules/utility/icon-picker.nix -> modules/utility/icon-picker/config.nix new file: modules/utility/icon-picker/default.nix new file: modules/utility/icon-picker/icon-picker.nix new file: modules/utility/telescope/config.nix modified: modules/utility/telescope/default.nix new file: modules/utility/telescope/telescope.nix renamed: modules/utility/venn.nix -> modules/utility/venn/config.nix new file: modules/utility/venn/default.nix new file: modules/utility/venn/venn.nix
94 lines
2.1 KiB
Nix
94 lines
2.1 KiB
Nix
{
|
|
pkgs,
|
|
config,
|
|
lib,
|
|
...
|
|
}:
|
|
with lib;
|
|
with builtins; let
|
|
cfg = config.vim.visuals;
|
|
in {
|
|
options.vim.visuals = {
|
|
enable = mkOption {
|
|
type = types.bool;
|
|
description = "visual enhancements";
|
|
default = false;
|
|
};
|
|
|
|
nvimWebDevicons.enable = mkOption {
|
|
type = types.bool;
|
|
description = "enable dev icons. required for certain plugins [nvim-web-devicons]";
|
|
default = false;
|
|
};
|
|
|
|
lspkind.enable = mkOption {
|
|
type = types.bool;
|
|
description = "enable vscode-like pictograms for lsp [lspkind]";
|
|
default = false;
|
|
};
|
|
|
|
scrollBar.enable = mkOption {
|
|
type = types.bool;
|
|
description = "enable scrollbar [scrollbar.nvim]";
|
|
default = false;
|
|
};
|
|
|
|
smoothScroll.enable = mkOption {
|
|
type = types.bool;
|
|
description = "enable smooth scrolling [cinnamon-nvim]";
|
|
default = false;
|
|
};
|
|
|
|
cellularAutomaton.enable = mkOption {
|
|
type = types.bool;
|
|
description = "enable cellular automaton [cellular-automaton]";
|
|
default = false;
|
|
};
|
|
|
|
cursorWordline = {
|
|
enable = mkOption {
|
|
type = types.bool;
|
|
description = "enable word and delayed line highlight [nvim-cursorline]";
|
|
default = false;
|
|
};
|
|
|
|
lineTimeout = mkOption {
|
|
type = types.int;
|
|
description = "time in milliseconds for cursorline to appear";
|
|
};
|
|
};
|
|
|
|
indentBlankline = {
|
|
enable = mkOption {
|
|
type = types.bool;
|
|
description = "enable indentation guides [indent-blankline]";
|
|
default = false;
|
|
};
|
|
|
|
listChar = mkOption {
|
|
type = types.str;
|
|
description = "Character for indentation line";
|
|
default = "│";
|
|
};
|
|
|
|
fillChar = mkOption {
|
|
type = types.str;
|
|
description = "Character to fill indents";
|
|
default = "⋅";
|
|
};
|
|
|
|
eolChar = mkOption {
|
|
type = types.str;
|
|
description = "Character at end of line";
|
|
default = "↴";
|
|
};
|
|
|
|
showCurrContext = mkOption {
|
|
type = types.bool;
|
|
description = "Highlight current context from treesitter";
|
|
default = true;
|
|
};
|
|
};
|
|
};
|
|
}
|