mirror of
https://github.com/NotAShelf/nvf.git
synced 2024-11-27 15:36:46 +00:00
22 lines
352 B
Nix
22 lines
352 B
Nix
{
|
|
config,
|
|
lib,
|
|
...
|
|
}: let
|
|
inherit (lib.modules) mkIf;
|
|
inherit (lib.nvim.dag) entryAnywhere;
|
|
|
|
cfg = config.vim.lsp;
|
|
in {
|
|
config = mkIf (cfg.enable && cfg.otter.enable) {
|
|
vim = {
|
|
startPlugins = ["otter"];
|
|
|
|
pluginRC.trouble = entryAnywhere ''
|
|
-- Enable Otter
|
|
require("otter").setup {}
|
|
'';
|
|
};
|
|
};
|
|
}
|