mirror of
https://github.com/NotAShelf/nvf.git
synced 2025-09-08 11:21:35 +00:00
dev: add missing hover window borders via noice.nvim
This commit is contained in:
parent
923c090c5b
commit
0667f1f936
3 changed files with 8 additions and 3 deletions
|
@ -1,8 +1,12 @@
|
|||
{lib, ...}: let
|
||||
inherit (lib) mkEnableOption mkOption;
|
||||
inherit (lib) mkEnableOption mkOption types;
|
||||
in {
|
||||
options.vim.ui.borders = {
|
||||
enable = mkEnableOption "visible borders for most windows";
|
||||
enable = mkOption {
|
||||
type = types.bool;
|
||||
default = true;
|
||||
description = "visible borders for most windows";
|
||||
};
|
||||
|
||||
# TODO: make per-plugin borders configurable
|
||||
};
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue