mirror of
https://github.com/NotAShelf/neovim-flake.git
synced 2024-11-08 04:35:58 +01:00
13 lines
288 B
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
|
|
};
|
|
}
|