mirror of
https://github.com/NotAShelf/neovim-flake.git
synced 2024-11-08 10:15:59 +01:00
20 lines
366 B
Nix
20 lines
366 B
Nix
{
|
|
config,
|
|
lib,
|
|
...
|
|
}:
|
|
with lib;
|
|
with builtins; let
|
|
cfg = config.vim.lsp;
|
|
in {
|
|
config = mkIf (cfg.enable && cfg.lsplines.enable) {
|
|
vim.startPlugins = ["lsp-lines"];
|
|
vim.luaConfigRC.lsplines = nvim.dag.entryAfter ["lspconfig"] ''
|
|
require("lsp_lines").setup()
|
|
|
|
vim.diagnostic.config({
|
|
virtual_text = false,
|
|
})
|
|
'';
|
|
};
|
|
}
|