mirror of
https://github.com/nix-community/nixvim.git
synced 2025-07-28 14:45:26 +02:00
plugins/none-ls: switch to mkNeovimPlugin
This commit is contained in:
parent
cb9ee70e8b
commit
ca8ac5f8e4
4 changed files with 479 additions and 300 deletions
|
@ -2,287 +2,154 @@
|
|||
lib,
|
||||
helpers,
|
||||
config,
|
||||
options,
|
||||
pkgs,
|
||||
...
|
||||
}:
|
||||
with lib;
|
||||
let
|
||||
cfg = config.plugins.none-ls;
|
||||
in
|
||||
{
|
||||
imports = [
|
||||
./servers.nix
|
||||
(mkRenamedOptionModule
|
||||
[
|
||||
"plugins"
|
||||
"null-ls"
|
||||
]
|
||||
[
|
||||
"plugins"
|
||||
"none-ls"
|
||||
]
|
||||
)
|
||||
helpers.neovim-plugin.mkNeovimPlugin config {
|
||||
name = "none-ls";
|
||||
originalName = "none-ls.nvim";
|
||||
luaName = "null-ls";
|
||||
defaultPackage = pkgs.vimPlugins.none-ls-nvim;
|
||||
|
||||
maintainers = [ maintainers.MattSturgeon ];
|
||||
|
||||
# TODO: introduced 2024-06-18, remove after 24.11
|
||||
deprecateExtraOptions = true;
|
||||
optionsRenamedToSettings = [
|
||||
"border"
|
||||
"cmd"
|
||||
"debounce"
|
||||
"debug"
|
||||
"defaultTimeout"
|
||||
"diagnosticConfig"
|
||||
"diagnosticsFormat"
|
||||
"fallbackSeverity"
|
||||
"logLevel"
|
||||
"notifyFormat"
|
||||
"onAttach"
|
||||
"onInit"
|
||||
"onExit"
|
||||
"rootDir"
|
||||
"shouldAttach"
|
||||
"tempDir"
|
||||
"updateInInsert"
|
||||
];
|
||||
|
||||
options.plugins.none-ls = helpers.neovim-plugin.extraOptionsOptions // {
|
||||
enable = mkEnableOption "none-ls";
|
||||
|
||||
package = mkOption {
|
||||
type = types.package;
|
||||
default = pkgs.vimPlugins.none-ls-nvim;
|
||||
description = "Plugin to use for none-ls";
|
||||
};
|
||||
|
||||
enableLspFormat = mkOption {
|
||||
type = types.bool;
|
||||
default = config.plugins.lsp-format.enable;
|
||||
description = ''
|
||||
Automatically enable the `lsp-format` plugin and configure `none-ls` accordingly.
|
||||
'';
|
||||
example = true;
|
||||
};
|
||||
|
||||
border = helpers.defaultNullOpts.mkBorder null "`:NullLsInfo` UI window." ''
|
||||
Uses `NullLsInfoBorder` highlight group (see [Highlight Groups](#highlight-groups)).
|
||||
'';
|
||||
|
||||
cmd = helpers.defaultNullOpts.mkListOf types.str [ "nvim" ] ''
|
||||
Defines the command used to start the null-ls server. If you do not have an
|
||||
`nvim` binary available on your `$PATH`, you should change this to an absolute
|
||||
path to the binary.
|
||||
'';
|
||||
|
||||
debounce = helpers.defaultNullOpts.mkInt 250 ''
|
||||
The `debounce` setting controls the amount of time between the last change to a buffer and the
|
||||
next `textDocument/didChange` notification.
|
||||
These notifications cause null-ls to generate diagnostics, so this setting indirectly controls
|
||||
the rate of diagnostic generation (affected by `update_in_insert`, described below).
|
||||
|
||||
Lowering `debounce` will result in quicker diagnostic refreshes at the cost of running
|
||||
diagnostic sources more frequently, which can affect performance.
|
||||
The default value should be enough to provide near-instantaneous feedback from most sources
|
||||
without unnecessary resource usage.
|
||||
'';
|
||||
|
||||
debug = helpers.defaultNullOpts.mkBool false ''
|
||||
Displays all possible log messages and writes them to the null-ls log, which you
|
||||
can view with the command `:NullLsLog`. This option can slow down Neovim, so
|
||||
it's strongly recommended to disable it for normal use.
|
||||
|
||||
`debug = true` is the same as setting `logLevel` to `"trace"`.
|
||||
'';
|
||||
|
||||
defaultTimeout = helpers.defaultNullOpts.mkInt 5000 ''
|
||||
Sets the amount of time (in milliseconds) after which built-in sources will time out.
|
||||
Note that built-in sources can define their own timeout period and that users can override the
|
||||
timeout period on a per-source basis, too (see [BUILTIN_CONFIG.md](BUILTIN_CONFIG.md)).
|
||||
|
||||
Specifying a timeout with a value less than zero will prevent commands from timing out.
|
||||
'';
|
||||
|
||||
diagnosticConfig = helpers.defaultNullOpts.mkNullable types.attrs null ''
|
||||
Specifies diagnostic display options for null-ls sources, as described in
|
||||
`:help vim.diagnostic.config()`.
|
||||
(null-ls uses separate namespaces for each source, so server-wide configuration will not work
|
||||
as expected.)
|
||||
|
||||
You can also configure `diagnostic_config` per built-in by using the `with` method, described
|
||||
in BUILTIN_CONFIG.md.
|
||||
'';
|
||||
|
||||
diagnosticsFormat = helpers.defaultNullOpts.mkStr "#{m}" ''
|
||||
Sets the default format used for diagnostics. The plugin will replace the following special
|
||||
components with the relevant diagnostic information:
|
||||
|
||||
- `#{m}`: message
|
||||
- `#{s}`: source name (defaults to `null-ls` if not specified)
|
||||
- `#{c}`: code (if available)
|
||||
|
||||
For example, setting `diagnostics_format` to the following:
|
||||
|
||||
```lua
|
||||
diagnostics_format = "[#{c}] #{m} (#{s})"
|
||||
```
|
||||
|
||||
Formats diagnostics as follows:
|
||||
|
||||
```txt
|
||||
[2148] Tips depend on target shell and yours is unknown. Add a shebang or a 'shell' directive. (shellcheck)
|
||||
```
|
||||
|
||||
You can also configure `diagnostics_format` per built-in by using the `with`
|
||||
method, described in [BUILTIN_CONFIG](BUILTIN_CONFIG.md).
|
||||
'';
|
||||
|
||||
fallbackSeverity = helpers.defaultNullOpts.mkSeverity "error" ''
|
||||
Defines the severity used when a diagnostic source does not explicitly define a severity.
|
||||
See `:help diagnostic-severity` for available values.
|
||||
'';
|
||||
|
||||
logLevel =
|
||||
helpers.defaultNullOpts.mkEnum
|
||||
[
|
||||
"off"
|
||||
"error"
|
||||
"warn"
|
||||
"info"
|
||||
"debug"
|
||||
"trace"
|
||||
]
|
||||
"warn"
|
||||
''
|
||||
Enables or disables logging to file.
|
||||
|
||||
Plugin logs messages on several logging levels to following destinations:
|
||||
|
||||
- file, can be inspected by `:NullLsLog`.
|
||||
- neovim's notification area.
|
||||
'';
|
||||
|
||||
notifyFormat = helpers.defaultNullOpts.mkStr "[null-ls] %s" ''
|
||||
Sets the default format for `vim.notify()` messages.
|
||||
Can be used to customize 3rd party notification plugins like
|
||||
[nvim-notify](https://github.com/rcarriga/nvim-notify).
|
||||
'';
|
||||
|
||||
onAttach = helpers.defaultNullOpts.mkStr null ''
|
||||
Defines an `on_attach` callback to run whenever null-ls attaches to a buffer.
|
||||
If you have a common `on_attach` you're using for LSP servers, you can reuse that here, use a
|
||||
custom callback for null-ls, or leave this undefined.
|
||||
'';
|
||||
|
||||
onInit = helpers.defaultNullOpts.mkLuaFn null ''
|
||||
Defines an `on_init` callback to run when null-ls initializes. From here, you
|
||||
can make changes to the client (the first argument) or `initialize_result` (the
|
||||
second argument, which as of now is not used).
|
||||
'';
|
||||
|
||||
onExit = helpers.defaultNullOpts.mkLuaFn null ''
|
||||
Defines an `on_exit` callback to run when the null-ls client exits.
|
||||
'';
|
||||
|
||||
rootDir = helpers.defaultNullOpts.mkLuaFn null ''
|
||||
Determines the root of the null-ls server. On startup, null-ls will call
|
||||
`root_dir` with the full path to the first file that null-ls attaches to.
|
||||
|
||||
```lua
|
||||
local root_dir = function(fname)
|
||||
return fname:match("my-project") and "my-project-root"
|
||||
end
|
||||
```
|
||||
|
||||
If `root_dir` returns `nil`, the root will resolve to the current working
|
||||
directory.
|
||||
'';
|
||||
|
||||
shouldAttach = helpers.defaultNullOpts.mkLuaFn null ''
|
||||
A user-defined function that controls whether to enable null-ls for a given
|
||||
buffer. Receives `bufnr` as its first argument.
|
||||
|
||||
To cut down potentially expensive calls, null-ls will call `should_attach` after
|
||||
its own internal checks pass, so it's not guaranteed to run on each new buffer.
|
||||
|
||||
```lua
|
||||
require("null-ls.nvim").setup({
|
||||
should_attach = function(bufnr)
|
||||
return not vim.api.nvim_buf_get_name(bufnr):match("^git://")
|
||||
end,
|
||||
})
|
||||
```
|
||||
'';
|
||||
|
||||
tempDir = helpers.defaultNullOpts.mkStr null ''
|
||||
Defines the directory used to create temporary files for sources that rely on them (a
|
||||
workaround used for command-based sources that do not support `stdio`).
|
||||
|
||||
To maximize compatibility, null-ls defaults to creating temp files in the same directory as
|
||||
the parent file.
|
||||
If this is causing issues, you can set it to `/tmp` (or another appropriate directory) here.
|
||||
Otherwise, there is no need to change this setting.
|
||||
|
||||
**Note**: some null-ls built-in sources expect temp files to exist within a project for
|
||||
context and so will not work if this option changes.
|
||||
|
||||
You can also configure `temp_dir` per built-in by using the `with` method, described in
|
||||
BUILTIN_CONFIG.md.
|
||||
'';
|
||||
|
||||
updateInInsert = helpers.defaultNullOpts.mkBool false ''
|
||||
Controls whether diagnostic sources run in insert mode.
|
||||
If set to `false`, diagnostic sources will run upon exiting insert mode, which greatly
|
||||
improves performance but can create a slight delay before diagnostics show up.
|
||||
Set this to `true` if you don't experience performance issues with your sources.
|
||||
|
||||
Note that by default, Neovim will not display updated diagnostics in insert mode.
|
||||
Together with the option above, you need to pass `update_in_insert = true` to
|
||||
`vim.diagnostic.config` for diagnostics to work as expected.
|
||||
See `:help vim.diagnostic.config` for more info.
|
||||
'';
|
||||
|
||||
sourcesItems = helpers.mkNullOrOption (
|
||||
with types; listOf (attrsOf str)
|
||||
) "The list of sources to enable, should be strings of lua code. Don't use this directly";
|
||||
};
|
||||
|
||||
config = mkIf cfg.enable {
|
||||
warnings = optional (cfg.enableLspFormat && (cfg.onAttach != null)) ''
|
||||
You have enabled the lsp-format integration with none-ls.
|
||||
However, you have provided a custom value to `plugins.none-ls.onAttach`.
|
||||
|
||||
-> The `enableLspFormat` option will thus not be able to add the `require('lsp-format').on_attach` snippet to `none-ls`.
|
||||
'';
|
||||
|
||||
assertions = [
|
||||
{
|
||||
assertion = cfg.enableLspFormat -> config.plugins.lsp-format.enable;
|
||||
message = ''
|
||||
Nixvim: You have enabled the `lsp-format` integration with none-ls.
|
||||
However, you have not enabled the `lsp-format` plugin itself (`plugins.lsp-format.enable = true`).
|
||||
'';
|
||||
}
|
||||
imports =
|
||||
let
|
||||
namespace = "plugins";
|
||||
oldPluginPath = [
|
||||
namespace
|
||||
"null-ls"
|
||||
];
|
||||
basePluginPath = [
|
||||
namespace
|
||||
"none-ls"
|
||||
];
|
||||
settingsPath = basePluginPath ++ [ "settings" ];
|
||||
in
|
||||
[
|
||||
./servers.nix
|
||||
(mkRenamedOptionModule oldPluginPath basePluginPath)
|
||||
(mkRenamedOptionModule (basePluginPath ++ [ "sourcesItems" ]) (settingsPath ++ [ "sources" ]))
|
||||
];
|
||||
|
||||
extraPlugins = [ cfg.package ];
|
||||
settingsExample = {
|
||||
diagnostics_format = "[#{c}] #{m} (#{s})";
|
||||
on_attach = ''
|
||||
function(client, bufnr)
|
||||
-- Integrate lsp-format with none-ls
|
||||
require('lsp-format').on_attach(client, bufnr)
|
||||
end
|
||||
'';
|
||||
on_exit = ''
|
||||
function()
|
||||
print("Goodbye, cruel world!")
|
||||
end
|
||||
'';
|
||||
on_init = ''
|
||||
function(client, initialize_result)
|
||||
print("Hello, world!")
|
||||
end
|
||||
'';
|
||||
root_dir = ''
|
||||
function(fname)
|
||||
return fname:match("my-project") and "my-project-root"
|
||||
end
|
||||
'';
|
||||
root_dir_async = ''
|
||||
function(fname, cb)
|
||||
cb(fname:match("my-project") and "my-project-root")
|
||||
end
|
||||
'';
|
||||
should_attach = ''
|
||||
function(bufnr)
|
||||
return not vim.api.nvim_buf_get_name(bufnr):match("^git://")
|
||||
end
|
||||
'';
|
||||
temp_dir = "/tmp";
|
||||
update_in_insert = false;
|
||||
};
|
||||
|
||||
extraConfigLua =
|
||||
let
|
||||
onAttach' =
|
||||
if (cfg.onAttach == null) && cfg.enableLspFormat then
|
||||
''
|
||||
require('lsp-format').on_attach
|
||||
''
|
||||
else
|
||||
cfg.onAttach;
|
||||
settingsOptions = import ./settings.nix { inherit helpers; };
|
||||
|
||||
setupOptions =
|
||||
with cfg;
|
||||
{
|
||||
inherit
|
||||
border
|
||||
cmd
|
||||
debounce
|
||||
debug
|
||||
;
|
||||
default_timeout = defaultTimeout;
|
||||
diagnostic_config = diagnosticConfig;
|
||||
diagnostics_format = diagnosticsFormat;
|
||||
fallback_severity = fallbackSeverity;
|
||||
log_level = logLevel;
|
||||
notify_format = notifyFormat;
|
||||
on_attach = helpers.mkRaw onAttach';
|
||||
on_init = onInit;
|
||||
on_exit = onExit;
|
||||
root_dir = rootDir;
|
||||
should_attach = shouldAttach;
|
||||
temp_dir = tempDir;
|
||||
update_in_insert = updateInInsert;
|
||||
extraOptions = {
|
||||
enableLspFormat = mkOption {
|
||||
type = types.bool;
|
||||
# TODO: consider default = false and enabling lsp-format automatically instead?
|
||||
default = config.plugins.lsp-format.enable;
|
||||
defaultText = literalExpression "plugins.lsp-format.enable";
|
||||
example = false;
|
||||
description = ''
|
||||
Automatically configure `none-ls` to use the `lsp-format` plugin.
|
||||
|
||||
sources = sourcesItems;
|
||||
}
|
||||
// cfg.extraOptions;
|
||||
in
|
||||
''
|
||||
Enabled automatically when `plugins.lsp-format` is enabled.
|
||||
Set `false` to disable that behavior.
|
||||
'';
|
||||
};
|
||||
};
|
||||
|
||||
callSetup = false;
|
||||
extraConfig =
|
||||
cfg:
|
||||
let
|
||||
# Set a custom on_attach when enableLspFormat is enabled
|
||||
# FIXME: Using `mkIf (...) (mkDefault "...")` would be better,
|
||||
# but that'd make it difficult to implement the "has no effect" warning.
|
||||
setupOptions =
|
||||
cfg.settings
|
||||
// optionalAttrs (cfg.enableLspFormat && cfg.settings.on_attach == null) {
|
||||
on_attach.__raw = ''
|
||||
require('lsp-format').on_attach
|
||||
'';
|
||||
};
|
||||
in
|
||||
{
|
||||
warnings = optional (cfg.enableLspFormat && cfg.settings.on_attach != null) ''
|
||||
You have enabled the lsp-format integration with none-ls.
|
||||
However, you have provided a custom value to `plugins.none-ls.settings.on_attach`.
|
||||
This means the `enableLspFormat` option will have no effect.
|
||||
Final value is:
|
||||
${generators.toPretty { } cfg.settings.on_attach}
|
||||
'';
|
||||
|
||||
assertions = [
|
||||
{
|
||||
assertion = cfg.enableLspFormat -> config.plugins.lsp-format.enable;
|
||||
message = ''
|
||||
Nixvim: You have enabled the lsp-format integration with none-ls.
|
||||
However, you have not enabled `plugins.lsp-format` itself.
|
||||
Note: `plugins.none-ls.enableLspFormat` is enabled by default when `plugins.lsp-format` is enabled.
|
||||
`plugins.none-ls.enableLspFormat` definitions: ${lib.options.showDefs options.plugins.none-ls.enableLspFormat.definitionsWithLocations}
|
||||
'';
|
||||
}
|
||||
];
|
||||
|
||||
# We only do this here because of enableLspFormat
|
||||
extraConfigLua = ''
|
||||
require("null-ls").setup(${helpers.toLuaObject setupOptions})
|
||||
'';
|
||||
};
|
||||
};
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue