mirror of
https://github.com/NotAShelf/neovim-flake.git
synced 2024-11-10 11:15:58 +01:00
9 lines
212 B
Nix
9 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
|
|
};
|
|
}
|