mirror of
https://github.com/NotAShelf/nvf.git
synced 2025-04-04 03:51:52 +00:00
30 lines
630 B
Nix
30 lines
630 B
Nix
{
|
|
config,
|
|
lib,
|
|
...
|
|
}: let
|
|
inherit (lib.modules) mkIf mkMerge;
|
|
inherit (lib.nvim.lua) toLuaObject;
|
|
inherit (lib.nvim.dag) entryAfter;
|
|
|
|
cfg = config.vim.lsp.null-ls;
|
|
in {
|
|
config = mkIf cfg.enable (mkMerge [
|
|
{
|
|
vim = {
|
|
startPlugins = [
|
|
"none-ls-nvim"
|
|
"plenary-nvim"
|
|
];
|
|
|
|
# null-ls implies that LSP is already being set up
|
|
# as it will hook into LSPs to receive information.
|
|
lsp.enable = true;
|
|
|
|
pluginRC.null_ls = entryAfter ["lsp-setup"] ''
|
|
require('null-ls').setup(${toLuaObject cfg.setupOpts})
|
|
'';
|
|
};
|
|
}
|
|
]);
|
|
}
|