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

14 lines
288 B
Nix
Raw Normal View History

2023-07-23 17:26:38 +02:00
{lib, ...}: let
inherit (lib) mkEnableOption mkOption types;
2023-07-23 17:26:38 +02:00
in {
options.vim.ui.borders = {
enable = mkOption {
type = types.bool;
default = true;
description = "visible borders for most windows";
};
2023-07-23 17:26:38 +02:00
# TODO: make per-plugin borders configurable
};
}