mirror of
https://github.com/NotAShelf/nvf.git
synced 2026-01-17 07:43:21 +00:00
Compare commits
No commits in common. "670f7eacaaa93a8c5bf3c7c016a8149459a078e4" and "9e958591513a76037bb3c973293f0a9bd818929a" have entirely different histories.
670f7eacaa
...
9e95859151
2 changed files with 1 additions and 8 deletions
|
|
@ -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):
|
||||
|
|
|
|||
|
|
@ -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;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue