mirror of
https://github.com/nix-community/nixvim.git
synced 2025-06-21 08:35:43 +02:00
89 lines
2.9 KiB
Nix
89 lines
2.9 KiB
Nix
|
{
|
||
|
lib,
|
||
|
helpers,
|
||
|
config,
|
||
|
pkgs,
|
||
|
...
|
||
|
}:
|
||
|
with lib;
|
||
|
helpers.neovim-plugin.mkNeovimPlugin config {
|
||
|
name = "lsp-status";
|
||
|
originalName = "lsp-status.nvim";
|
||
|
defaultPackage = pkgs.vimPlugins.lsp-status-nvim;
|
||
|
maintainers = [ helpers.maintainers.b3nb5n ];
|
||
|
|
||
|
settingsOptions =
|
||
|
let
|
||
|
mkIndicatorOption =
|
||
|
default:
|
||
|
helpers.defaultNullOpts.mkStr default ''
|
||
|
The string to show as diagnostics.
|
||
|
If you don't have Nerd/Awesome Fonts you can replace defaults with ASCII chars.
|
||
|
'';
|
||
|
in
|
||
|
{
|
||
|
kind_labels = helpers.defaultNullOpts.mkAttrsOf types.str "{}" ''
|
||
|
An optional map from LSP symbol kinds to label symbols. Used to decorate the current function name.
|
||
|
'';
|
||
|
|
||
|
select_symbol = helpers.defaultNullOpts.mkStr "" ''
|
||
|
An optional handler of the form `function(cursor_pos, document_symbol)` that should return
|
||
|
`true` if `document_symbol` (a `DocumentSymbol`) should be accepted as the symbol currently
|
||
|
containing the cursor.
|
||
|
'';
|
||
|
|
||
|
current_function = helpers.defaultNullOpts.mkBool true ''
|
||
|
True if the current function should be updated and displayed in the default statusline component.
|
||
|
'';
|
||
|
|
||
|
show_filename = helpers.defaultNullOpts.mkBool true ''
|
||
|
True if the current function should be updated and displayed in the default statusline component.
|
||
|
'';
|
||
|
|
||
|
indicator_ok = mkIndicatorOption "";
|
||
|
indicator_errors = mkIndicatorOption "";
|
||
|
indicator_warnings = mkIndicatorOption "";
|
||
|
indicator_info = mkIndicatorOption "🛈";
|
||
|
indicator_hint = mkIndicatorOption "❗";
|
||
|
|
||
|
indicator_separator = helpers.defaultNullOpts.mkStr " " ''
|
||
|
A string which goes between each diagnostic group symbol and its count.
|
||
|
'';
|
||
|
|
||
|
component_separator = helpers.defaultNullOpts.mkStr " " ''
|
||
|
A string which goes between each "chunk" of the statusline component (i.e. different diagnostic groups, messages).
|
||
|
'';
|
||
|
|
||
|
diagnostics = helpers.defaultNullOpts.mkBool true ''
|
||
|
If false, the default statusline component does not display LSP diagnostics.
|
||
|
'';
|
||
|
};
|
||
|
|
||
|
callSetup = false;
|
||
|
extraConfig = cfg: {
|
||
|
assertions = [
|
||
|
{
|
||
|
assertion = config.plugins.lsp.enable;
|
||
|
message = ''
|
||
|
Nixvim (plugins.lsp-status): `plugins.lsp` must be enabled to use lsp-status
|
||
|
'';
|
||
|
}
|
||
|
];
|
||
|
|
||
|
plugins.lsp = {
|
||
|
preConfig = ''
|
||
|
do
|
||
|
local lsp_status = require('lsp-status')
|
||
|
lsp_status.config(${helpers.toLuaObject cfg.settings})
|
||
|
lsp_status.register_progress()
|
||
|
end
|
||
|
'';
|
||
|
|
||
|
# the lsp status plugin needs to hook into the on attach and capabilities
|
||
|
# fields of the lsp setup call to track the progress of initializing the lsp
|
||
|
onAttach = "require('lsp-status').on_attach(client)";
|
||
|
capabilities = "capabilities = vim.tbl_extend('keep', capabilities or {}, require('lsp-status').capabilities)";
|
||
|
};
|
||
|
};
|
||
|
}
|