mirror of
https://github.com/NotAShelf/nvf.git
synced 2024-11-01 19:11:15 +00:00
39 lines
1 KiB
Nix
39 lines
1 KiB
Nix
{lib, ...}:
|
|
with lib;
|
|
with builtins; {
|
|
options.vim.ui.smartcolumn = {
|
|
enable = mkEnableOption "line length indicator";
|
|
|
|
showColumnAt = mkOption {
|
|
type = types.nullOr types.int;
|
|
default = 120;
|
|
description = "The position at which the column will be displayed. Set to null to disable";
|
|
};
|
|
|
|
disabledFiletypes = mkOption {
|
|
type = types.listOf types.str;
|
|
default = ["help" "text" "markdown" "NvimTree" "alpha"];
|
|
description = "The filetypes smartcolumn will be disabled for.";
|
|
};
|
|
|
|
columnAt = {
|
|
languages = lib.mkOption {
|
|
description = "The position at which smart column should be displayed for each individual buffer type";
|
|
type = lib.types.submodule {
|
|
freeformType = with lib.types; attrsOf (either int (listOf int));
|
|
};
|
|
|
|
example = lib.literalExpression ''
|
|
vim.ui.smartcolumn.columnAt.languages = {
|
|
nix = 110;
|
|
ruby = 120;
|
|
java = 130;
|
|
go = [90 130];
|
|
};
|
|
|
|
'';
|
|
};
|
|
};
|
|
};
|
|
}
|