chore: use nixvim rustaceanvim instead of pulling in manually

This commit is contained in:
Youwen Wu 2024-09-12 16:05:46 -07:00
parent 957cc89ec5
commit b1028bc4d3
Signed by: youwen5
GPG key ID: 865658ED1FE61EC3
2 changed files with 19 additions and 23 deletions

View file

@ -6,7 +6,8 @@
lua-language-server
];
plugins.lsp = {
plugins = {
lsp = {
enable = true;
inlayHints = true;
servers = {
@ -21,16 +22,15 @@
marksman.enable = true;
};
};
plugins.typescript-tools.enable = true;
plugins.lsp-lines.enable = true;
typescript-tools.enable = true;
lsp-lines.enable = true;
rustaceanvim.enable = true;
};
extraPlugins = [
(pkgs.vimUtils.buildVimPlugin {
name = "haskell-tools-nvim";
src = inputs.haskell-tools;
})
(pkgs.vimUtils.buildVimPlugin {
name = "rustaceanvim";
src = inputs.rustaceanvim;
})
];
}

View file

@ -19,10 +19,6 @@
url = "github:mrcjkb/haskell-tools.nvim";
flake = false;
};
rustaceanvim = {
url = "github:mrcjkb/rustaceanvim";
flake = false;
};
};
outputs =