Compare commits

..

No commits in common. "bac61f3c136bc78f5b474e95f69ec985db2914e0" and "fce24ec604487268875844bb6fb911bb66464d96" have entirely different histories.

13 changed files with 99 additions and 216 deletions

View file

@ -239,9 +239,8 @@
[alfarel](https://github.com/alfarelcynthesis): [alfarel](https://github.com/alfarelcynthesis):
[conform.nvim]: https://github.com/stevearc/conform.nvim
- Add missing `yazi.nvim` dependency (`snacks.nvim`). - Add missing `yazi.nvim` dependency (`snacks.nvim`).
- Add [mkdir.nvim](https://github.com/jghauser/mkdir.nvim) plugin for automatic - Add [mkdir.nvim](https://github.com/jghauser/mkdir.nvim) plugin for automatic
creation of parent directories when editing a nested file. creation of parent directories when editing a nested file.
- Add [nix-develop.nvim](https://github.com/figsoda/nix-develop.nvim) plugin for - Add [nix-develop.nvim](https://github.com/figsoda/nix-develop.nvim) plugin for
@ -253,8 +252,6 @@
[friendly-snippets](https://github.com/rafamadriz/friendly-snippets) so [friendly-snippets](https://github.com/rafamadriz/friendly-snippets) so
blink.cmp can source snippets from it. blink.cmp can source snippets from it.
- Fix [blink.cmp] breaking when built-in sources were modified. - Fix [blink.cmp] breaking when built-in sources were modified.
- Fix [conform.nvim] not allowing disabling formatting on and after save.
Use `null` value to disable them if conform is enabled.
[TheColorman](https://github.com/TheColorman): [TheColorman](https://github.com/TheColorman):
@ -287,16 +284,3 @@
[Sc3l3t0n](https://github.com/Sc3l3t0n): [Sc3l3t0n](https://github.com/Sc3l3t0n):
- Add F# support under `vim.languages.fsharp`. - Add F# support under `vim.languages.fsharp`.
[venkyr77](https://github.com/venkyr77):
- Add lint (luacheck) and formatting (stylua) support for Lua.
- Add lint (markdownlint-cli2) support for Markdown.
[tebuevd](https://github.com/tebuevd):
- Fix `pickers` configuration for `telescope` by nesting it under `setupOpts`
- Fix `find_command` configuration for `telescope` by nesting it under
`setupOpts.pickers.find_files`
- Update default `telescope.setupOpts.pickers.find_files.find_command` to only
include files (and therefore exclude directories from results)

View file

@ -43,6 +43,19 @@ in {
default = {}; default = {};
description = "Settings for completion providers."; description = "Settings for completion providers.";
}; };
transform_items = mkOption {
type = nullOr luaInline;
default = mkLuaInline "function(_, items) return items end";
defaultText = ''
Our default does nothing. If you want blink.cmp's default, which
lowers the score for snippets, set this option to null.
'';
description = ''
Function to use when transforming the items before they're returned
for all providers.
'';
};
}; };
cmdline = { cmdline = {

View file

@ -31,7 +31,7 @@ in {
''; '';
}; };
}) })
(mkIf (cfg.enable && cfg.lint_after_save) { (mkIf cfg.lint_after_save {
vim = { vim = {
augroups = [{name = "nvf_nvim_lint";}]; augroups = [{name = "nvf_nvim_lint";}];
autocmds = [ autocmds = [

View file

@ -4,7 +4,7 @@
... ...
}: let }: let
inherit (lib.options) mkOption mkEnableOption literalExpression; inherit (lib.options) mkOption mkEnableOption literalExpression;
inherit (lib.types) attrs enum nullOr; inherit (lib.types) attrs enum;
inherit (lib.nvim.types) mkPluginSetupOption; inherit (lib.nvim.types) mkPluginSetupOption;
inherit (lib.nvim.lua) mkLuaInline; inherit (lib.nvim.lua) mkLuaInline;
in { in {
@ -31,7 +31,7 @@ in {
}; };
format_on_save = mkOption { format_on_save = mkOption {
type = nullOr attrs; type = attrs;
default = { default = {
lsp_format = "fallback"; lsp_format = "fallback";
timeout_ms = 500; timeout_ms = 500;
@ -43,7 +43,7 @@ in {
}; };
format_after_save = mkOption { format_after_save = mkOption {
type = nullOr attrs; type = attrs;
default = {lsp_format = "fallback";}; default = {lsp_format = "fallback";};
description = '' description = ''
Table that will be passed to `conform.format()`. If this Table that will be passed to `conform.format()`. If this

View file

@ -5,7 +5,6 @@
}: let }: let
inherit (builtins) toJSON; inherit (builtins) toJSON;
inherit (lib.modules) mkIf mkMerge; inherit (lib.modules) mkIf mkMerge;
inherit (lib.generators) mkLuaInline;
inherit (lib.nvim.binds) addDescriptionsToMappings mkSetExprBinding mkSetLuaBinding pushDownDefault; inherit (lib.nvim.binds) addDescriptionsToMappings mkSetExprBinding mkSetLuaBinding pushDownDefault;
inherit (lib.nvim.dag) entryAnywhere; inherit (lib.nvim.dag) entryAnywhere;
inherit (lib.nvim.lua) toLuaObject; inherit (lib.nvim.lua) toLuaObject;
@ -33,7 +32,6 @@ in {
return '<Ignore>' return '<Ignore>'
end end
'') '')
(mkSetExprBinding gsMappings.previousHunk '' (mkSetExprBinding gsMappings.previousHunk ''
function() function()
if vim.wo.diff then return ${toJSON gsMappings.previousHunk.value} end if vim.wo.diff then return ${toJSON gsMappings.previousHunk.value} end
@ -79,12 +77,13 @@ in {
} }
(mkIf cfg.codeActions.enable { (mkIf cfg.codeActions.enable {
vim.lsp.null-ls = { vim.lsp.null-ls.enable = true;
enable = true; vim.lsp.null-ls.sources.gitsigns-ca = ''
setupOpts.sources.gitsigns-ca = mkLuaInline '' table.insert(
require("null-ls").builtins.code_actions.gitsigns ls_sources,
''; null_ls.builtins.code_actions.gitsigns
}; )
'';
}) })
]); ]);
} }

View file

@ -4,30 +4,16 @@
lib, lib,
... ...
}: let }: let
inherit (builtins) attrNames;
inherit (lib.options) mkEnableOption mkOption; inherit (lib.options) mkEnableOption mkOption;
inherit (lib.modules) mkIf mkMerge; inherit (lib.modules) mkIf mkMerge;
inherit (lib.meta) getExe; inherit (lib.meta) getExe;
inherit (lib.lists) isList; inherit (lib.lists) isList;
inherit (lib.types) bool either enum listOf package str; inherit (lib.types) either listOf package str;
inherit (lib.nvim.types) diagnostics mkGrammarOption; inherit (lib.nvim.types) mkGrammarOption;
inherit (lib.nvim.lua) expToLua; inherit (lib.nvim.lua) expToLua;
inherit (lib.nvim.dag) entryBefore; inherit (lib.nvim.dag) entryBefore;
cfg = config.vim.languages.lua; cfg = config.vim.languages.lua;
defaultFormat = "stylua";
formats = {
stylua = {
package = pkgs.stylua;
};
};
defaultDiagnosticsProvider = ["luacheck"];
diagnosticsProviders = {
luacheck = {
package = pkgs.luajitPackages.luacheck;
};
};
in { in {
imports = [ imports = [
(lib.mkRemovedOptionModule ["vim" "languages" "lua" "lsp" "neodev"] '' (lib.mkRemovedOptionModule ["vim" "languages" "lua" "lsp" "neodev"] ''
@ -53,34 +39,6 @@ in {
lazydev.enable = mkEnableOption "lazydev.nvim integration, useful for neovim plugin developers"; lazydev.enable = mkEnableOption "lazydev.nvim integration, useful for neovim plugin developers";
}; };
format = {
enable = mkOption {
type = bool;
default = config.vim.languages.enableFormat;
description = "Enable Lua formatting";
};
type = mkOption {
type = enum (attrNames formats);
default = defaultFormat;
description = "Lua formatter to use";
};
package = mkOption {
type = package;
default = formats.${cfg.format.type}.package;
description = "Lua formatter package";
};
};
extraDiagnostics = {
enable = mkEnableOption "extra Lua diagnostics" // {default = config.vim.languages.enableExtraDiagnostics;};
types = diagnostics {
langDesc = "Lua";
inherit diagnosticsProviders;
inherit defaultDiagnosticsProvider;
};
};
}; };
config = mkMerge [ config = mkMerge [
@ -116,27 +74,6 @@ in {
}) })
''; '';
}) })
(mkIf cfg.format.enable {
vim.formatter.conform-nvim = {
enable = true;
setupOpts.formatters_by_ft.lua = [cfg.format.type];
setupOpts.formatters.${cfg.format.type} = {
command = getExe cfg.format.package;
};
};
})
(mkIf cfg.extraDiagnostics.enable {
vim.diagnostics.nvim-lint = {
enable = true;
linters_by_ft.lua = cfg.extraDiagnostics.types;
linters = mkMerge (map (name: {
${name}.cmd = getExe diagnosticsProviders.${name}.package;
})
cfg.extraDiagnostics.types);
};
})
])) ]))
]; ];
} }

View file

@ -11,7 +11,7 @@
inherit (lib.lists) isList; inherit (lib.lists) isList;
inherit (lib.types) bool enum either package listOf str; inherit (lib.types) bool enum either package listOf str;
inherit (lib.nvim.lua) expToLua toLuaObject; inherit (lib.nvim.lua) expToLua toLuaObject;
inherit (lib.nvim.types) diagnostics mkGrammarOption mkPluginSetupOption; inherit (lib.nvim.types) mkGrammarOption mkPluginSetupOption;
inherit (lib.nvim.dag) entryAnywhere; inherit (lib.nvim.dag) entryAnywhere;
cfg = config.vim.languages.markdown; cfg = config.vim.languages.markdown;
@ -46,12 +46,6 @@
package = pkgs.prettierd; package = pkgs.prettierd;
}; };
}; };
defaultDiagnosticsProvider = ["markdownlint-cli2"];
diagnosticsProviders = {
markdownlint-cli2 = {
package = pkgs.markdownlint-cli2;
};
};
in { in {
options.vim.languages.markdown = { options.vim.languages.markdown = {
enable = mkEnableOption "Markdown markup language support"; enable = mkEnableOption "Markdown markup language support";
@ -127,15 +121,6 @@ in {
}; };
}; };
}; };
extraDiagnostics = {
enable = mkEnableOption "extra Markdown diagnostics" // {default = config.vim.languages.enableExtraDiagnostics;};
types = diagnostics {
langDesc = "Markdown";
inherit diagnosticsProviders;
inherit defaultDiagnosticsProvider;
};
};
}; };
config = mkIf cfg.enable (mkMerge [ config = mkIf cfg.enable (mkMerge [
@ -170,16 +155,5 @@ in {
require("render-markdown").setup(${toLuaObject cfg.extensions.render-markdown-nvim.setupOpts}) require("render-markdown").setup(${toLuaObject cfg.extensions.render-markdown-nvim.setupOpts})
''; '';
}) })
(mkIf cfg.extraDiagnostics.enable {
vim.diagnostics.nvim-lint = {
enable = true;
linters_by_ft.markdown = cfg.extraDiagnostics.types;
linters = mkMerge (map (name: {
${name}.cmd = getExe diagnosticsProviders.${name}.package;
})
cfg.extraDiagnostics.types);
};
})
]); ]);
} }

View file

@ -4,12 +4,13 @@
... ...
}: let }: let
inherit (lib.modules) mkIf mkMerge; inherit (lib.modules) mkIf mkMerge;
inherit (lib.nvim.lua) toLuaObject; inherit (lib.attrsets) mapAttrs;
inherit (lib.nvim.dag) entryAfter; inherit (lib.trivial) boolToString;
inherit (lib.nvim.dag) entryAnywhere entryAfter entryBetween;
cfg = config.vim.lsp.null-ls; cfg = config.vim.lsp;
in { in {
config = mkIf cfg.enable (mkMerge [ config = mkIf cfg.null-ls.enable (mkMerge [
{ {
vim = { vim = {
startPlugins = [ startPlugins = [
@ -17,14 +18,35 @@ in {
"plenary-nvim" "plenary-nvim"
]; ];
# null-ls implies that LSP is already being set up # null-ls implies LSP already being set up
# as it will hook into LSPs to receive information. # since it will hook into LSPs to receive information
lsp.enable = true; lsp.enable = true;
pluginRC.null_ls = entryAfter ["lsp-setup"] '' pluginRC = {
require('null-ls').setup(${toLuaObject cfg.setupOpts}) # early setup for null-ls
''; null_ls-setup = entryAnywhere ''
local null_ls = require("null-ls")
local null_helpers = require("null-ls.helpers")
local null_methods = require("null-ls.methods")
local ls_sources = {}
'';
# null-ls setup
null_ls = entryAfter ["null_ls-setup" "lsp-setup"] ''
require('null-ls').setup({
debug = ${boolToString cfg.null-ls.debug},
diagnostics_format = "${cfg.null-ls.diagnostics_format}",
debounce = ${toString cfg.null-ls.debounce},
default_timeout = ${toString cfg.null-ls.default_timeout},
sources = ls_sources,
on_attach = default_on_attach
})
'';
};
}; };
} }
{
vim.pluginRC = mapAttrs (_: v: (entryBetween ["null_ls"] ["null_ls-setup"] v)) cfg.null-ls.sources;
}
]); ]);
} }

View file

@ -1,87 +1,34 @@
{lib, ...}: let {lib, ...}: let
inherit (lib.options) mkOption mkEnableOption; inherit (lib.options) mkEnableOption mkOption;
inherit (lib.types) attrsOf str int nullOr; inherit (lib.types) attrsOf str int;
inherit (lib.generators) mkLuaInline;
inherit (lib.nvim.types) luaInline mkPluginSetupOption;
inherit (lib.nvim.config) batchRenameOptions;
migrationTable = {
debug = "debug";
diagnostics_format = "diagnostics_format";
debounce = "debounce";
default_timeout = "default_timeout";
sources = "sources";
};
renamedSetupOpts =
batchRenameOptions
["vim" "lsp" "null-ls"]
["vim" "lsp" "null-ls" "setupOpts"]
migrationTable;
in { in {
imports = renamedSetupOpts;
options.vim.lsp.null-ls = { options.vim.lsp.null-ls = {
enable = mkEnableOption '' enable = mkEnableOption "null-ls, also enabled automatically";
null-ls, plugin to use Neovim as a language server to inject LSP diagnostics,
code actions, and more via Lua.
'';
setupOpts = mkPluginSetupOption "null-ls" { debug = mkEnableOption "debugging information for `null-ls";
debug = mkEnableOption ''
debugging information for null-ls.
Displays all possible log messages and writes them to the null-ls log, diagnostics_format = mkOption {
which you can view with the command `:NullLsLog` type = str;
''; default = "[#{m}] #{s} (#{c})";
description = "Diagnostic output format for null-ls";
};
diagnostics_format = mkOption { debounce = mkOption {
type = str; type = int;
default = "[#{m}] #{s} (#{c})"; default = 250;
description = '' description = "Default debounce";
Sets the default format used for diagnostics. null-ls will replace th };
e following special components with the relevant diagnostic information:
* `#{m}`: message default_timeout = mkOption {
* `#{s}`: source name (defaults to null-ls if not specified) type = int;
* `#{c}`: code (if available) default = 5000;
''; description = "Default timeout value, in milliseconds";
}; };
debounce = mkOption { sources = mkOption {
type = int; description = "null-ls sources";
default = 250; type = attrsOf str;
description = '' default = {};
Amount of time between the last change to a buffer and the next `textDocument/didChange` notification.
'';
};
default_timeout = mkOption {
type = int;
default = 5000;
description = ''
Amount of time (in milliseconds) after which built-in sources will time out.
:::{.note}
Built-in sources can define their own timeout period and users can override
the timeout period on a per-source basis
:::
'';
};
sources = mkOption {
type = nullOr (attrsOf luaInline);
default = null;
description = "Sources for null-ls to register";
};
on_attach = mkOption {
type = nullOr luaInline;
default = mkLuaInline "on_attach";
description = ''
Defines an on_attach callback to run whenever null-ls attaches to a buffer.
'';
};
}; };
}; };
} }

View file

@ -8,12 +8,6 @@
inherit (lib.nvim.binds) mkMappingOption; inherit (lib.nvim.binds) mkMappingOption;
inherit (lib.nvim.types) mkPluginSetupOption luaInline; inherit (lib.nvim.types) mkPluginSetupOption luaInline;
setupOptions = { setupOptions = {
pickers.find_files.find_command = mkOption {
description = "cmd to use for finding files";
type = either (listOf str) luaInline;
default = ["${pkgs.fd}/bin/fd" "--type=file"];
};
defaults = { defaults = {
vimgrep_arguments = mkOption { vimgrep_arguments = mkOption {
description = '' description = ''
@ -33,6 +27,11 @@
"--no-ignore" "--no-ignore"
]; ];
}; };
pickers.find_command = mkOption {
description = "cmd to use for finding files";
type = either (listOf str) luaInline;
default = ["${pkgs.fd}/bin/fd"];
};
prompt_prefix = mkOption { prompt_prefix = mkOption {
description = "Shown in front of Telescope's prompt"; description = "Shown in front of Telescope's prompt";
type = str; type = str;

View file

@ -12,7 +12,8 @@ in {
config = mkIf cfg.enable { config = mkIf cfg.enable {
vim = { vim = {
startPlugins = ["nvim-scrollbar"]; startPlugins = ["nvim-scrollbar"];
pluginRC.nvim-scrollbar = entryAnywhere ''
pluginRC.cursorline = entryAnywhere ''
require("scrollbar").setup(${toLuaObject cfg.setupOpts}) require("scrollbar").setup(${toLuaObject cfg.setupOpts})
''; '';
}; };

View file

@ -13,7 +13,7 @@ in {
setupOpts = mkPluginSetupOption "scrollbar-nvim" { setupOpts = mkPluginSetupOption "scrollbar-nvim" {
excluded_filetypes = mkOption { excluded_filetypes = mkOption {
type = listOf str; type = listOf str;
default = ["prompt" "TelescopePrompt" "noice" "NvimTree" "neo-tree" "alpha" "notify" "Navbuddy" "fastaction_popup"]; default = ["prompt" "TelescopePrompt" "noice" "noice" "NvimTree" "neo-tree" "alpha" "notify" "Navbuddy"];
description = "Filetypes to hide the scrollbar on"; description = "Filetypes to hide the scrollbar on";
}; };
}; };

View file

@ -48,9 +48,16 @@
patches = [./patches/flutter-tools.patch]; patches = [./patches/flutter-tools.patch];
# Disable failing require check hook checks # Disable failing require check hook checks
doCheck = false; nvimSkipModule = [
"flutter-tools.devices"
"flutter-tools.dap"
"flutter-tools.runners.job_runner"
"flutter-tools.decorations"
"flutter-tools.commands"
"flutter-tools.executable"
"flutter-tools.dev_tools"
];
}; };
inherit (inputs.self.legacyPackages.${pkgs.stdenv.system}) blink-cmp; inherit (inputs.self.legacyPackages.${pkgs.stdenv.system}) blink-cmp;
}; };