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

13 lines
288 B
Nix

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