Add dart lsp

This commit is contained in:
Bad 2023-03-19 14:36:16 +01:00
parent 15e0e96372
commit fbb59f1345
5 changed files with 27 additions and 3 deletions

View File

@ -434,11 +434,11 @@
},
"latest_2": {
"locked": {
"lastModified": 1679231546,
"narHash": "sha256-Lp1UbxFkRCOtJKIG0FAxgGsvoxap1ADyqkCN8a5OzRw=",
"lastModified": 1679232602,
"narHash": "sha256-O7dj7MvfhN0G5BQxMjPEUh13iGGjLT87Wxc4U6EH20E=",
"owner": "nixos",
"repo": "nixpkgs",
"rev": "eefe9c8bae9abcf7a0ec953f6e18f82d8d86e67a",
"rev": "feb661ff785b95dfbfe780143b66ad21814218fc",
"type": "github"
},
"original": {

View File

@ -0,0 +1,20 @@
{ lib, pkgs, config, ... }:
let
cfg = config.mae.nvim.dart;
in
with lib;
{
options.mae.nvim.dart.enable = lib.mkEnableOption "Enable dart support in neovim";
config = mkIf cfg.enable {
mae.nvim.lsp.servers.dartls = {
enable = true;
script = ''
{
cmd = { "${pkgs.latest.dart}/bin/dart", "language-server" },
}
'';
};
programs.neovim.plugins = with pkgs.vimPlugins; [ dart-vim-plugin ];
};
}

View File

@ -13,6 +13,7 @@ in
./python.nix
./clangd.nix
./elixir.nix
./dart.nix
];
options.mae.nvim = {

View File

@ -20,6 +20,8 @@ let
in
{
options.mae.nvim.lsp = {
enable = mkEnableOption "Enable lsp support in nvim with nvim-lspconfig and cmp-nvim";
servers = mkOption {
type = types.attrsOf lspLangConfigType;

View File

@ -11,5 +11,6 @@
clangd.enable = true;
python.enable = true;
elixir.enable = true;
dart.enable = true;
};
}