feat: make visible borders optional

This commit is contained in:
raf 2023-07-23 18:26:38 +03:00
commit 0951114a29
No known key found for this signature in database
GPG key ID: 02D1DD3FA08B6B29
5 changed files with 23 additions and 2 deletions

View file

@ -0,0 +1,9 @@
{lib, ...}: let
inherit (lib) mkEnableOption mkOption;
in {
options.vim.ui.borders = {
enable = mkEnableOption "visible borders for most windows";
# TODO: make per-plugin borders configurable
};
}

View file

@ -0,0 +1,5 @@
_: {
imports = [
./borders.nix
];
}

View file

@ -6,5 +6,6 @@ _: {
./smartcolumn
./colorizer
./illuminate
./borders
];
}