mirror of
https://github.com/NotAShelf/neovim-flake.git
synced 2024-12-20 17:39:50 +01: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
|
||
|
};
|
||
|
}
|