mirror of
https://github.com/NotAShelf/nvf.git
synced 2024-11-02 19:41:15 +00:00
10 lines
212 B
Nix
10 lines
212 B
Nix
{lib, ...}: let
|
|
inherit (lib) mkEnableOption mkOption;
|
|
in {
|
|
options.vim.ui.borders = {
|
|
enable = mkEnableOption "visible borders for most windows";
|
|
|
|
# TODO: make per-plugin borders configurable
|
|
};
|
|
}
|