2023-11-07 00:50:27 +00:00
|
|
|
{lib, ...}: let
|
|
|
|
inherit (lib) mkEnableOption mkOption types;
|
|
|
|
in {
|
2023-04-05 13:58:56 +00:00
|
|
|
options.vim.ui.smartcolumn = {
|
2023-06-05 20:10:25 +00:00
|
|
|
enable = mkEnableOption "line length indicator";
|
2023-04-05 13:58:56 +00:00
|
|
|
|
|
|
|
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.";
|
|
|
|
};
|
2023-04-11 10:57:34 +00:00
|
|
|
|
2023-06-04 11:12:08 +00:00
|
|
|
columnAt = {
|
|
|
|
languages = lib.mkOption {
|
|
|
|
description = "The position at which smart column should be displayed for each individual buffer type";
|
|
|
|
type = lib.types.submodule {
|
2023-06-04 14:36:01 +00:00
|
|
|
freeformType = with lib.types; attrsOf (either int (listOf int));
|
2023-06-04 11:12:08 +00:00
|
|
|
};
|
2023-06-04 14:36:01 +00:00
|
|
|
|
|
|
|
example = lib.literalExpression ''
|
|
|
|
vim.ui.smartcolumn.columnAt.languages = {
|
|
|
|
nix = 110;
|
|
|
|
ruby = 120;
|
|
|
|
java = 130;
|
|
|
|
go = [90 130];
|
|
|
|
};
|
|
|
|
|
|
|
|
'';
|
2023-06-04 11:12:08 +00:00
|
|
|
};
|
2023-04-05 13:58:56 +00:00
|
|
|
};
|
|
|
|
};
|
|
|
|
}
|