Compare commits

..

No commits in common. "670f7eacaaa93a8c5bf3c7c016a8149459a078e4" and "9e958591513a76037bb3c973293f0a9bd818929a" have entirely different histories.

2 changed files with 1 additions and 8 deletions

View file

@ -301,7 +301,6 @@
- Add neo-tree integration for Bufferline.
- Add more applicable filetypes to illuminate denylist.
- Disable mini.indentscope for applicable filetypes.
- Fix fzf-lua having a hard dependency on fzf.
- Enable inlay hints support - `config.vim.lsp.inlayHints`.
[tebuevd](https://github.com/tebuevd):

View file

@ -1,21 +1,15 @@
{
config,
lib,
pkgs,
...
}: let
inherit (lib.types) enum package;
inherit (lib.types) nullOr enum;
inherit (lib.options) mkEnableOption mkOption;
inherit (lib.nvim.types) mkPluginSetupOption borderType;
in {
options.vim.fzf-lua = {
enable = mkEnableOption "fzf-lua";
setupOpts = mkPluginSetupOption "fzf-lua" {
fzf_bin = mkOption {
type = package;
default = "${lib.getExe pkgs.fzf}";
description = "fzf package to use";
};
winopts.border = mkOption {
type = borderType;
default = config.vim.ui.borders.globalStyle;