mirror of
https://github.com/nix-community/nixvim.git
synced 2025-06-25 10:18:36 +02:00
plugins/lsp: add fortls
Co-authored-by: Gaétan Lepage <33058747+GaetanLepage@users.noreply.github.com>
This commit is contained in:
parent
db33f46b5d
commit
61ee0552c9
2 changed files with 11 additions and 0 deletions
|
@ -210,6 +210,16 @@ with lib; let
|
||||||
package = pkgs.elixir-ls;
|
package = pkgs.elixir-ls;
|
||||||
cmd = cfg: ["${cfg.package}/bin/elixir-ls"];
|
cmd = cfg: ["${cfg.package}/bin/elixir-ls"];
|
||||||
}
|
}
|
||||||
|
{
|
||||||
|
name = "fortls";
|
||||||
|
description = "fortls for Fortran";
|
||||||
|
cmd = cfg: [
|
||||||
|
"${cfg.package}/bin/fortls"
|
||||||
|
"--hover_signature"
|
||||||
|
"--hover_language=fortran"
|
||||||
|
"--use_signature_help"
|
||||||
|
];
|
||||||
|
}
|
||||||
{
|
{
|
||||||
name = "fsautocomplete";
|
name = "fsautocomplete";
|
||||||
description = "fsautocomplete for F#";
|
description = "fsautocomplete for F#";
|
||||||
|
|
|
@ -102,6 +102,7 @@
|
||||||
emmet_ls.enable = true;
|
emmet_ls.enable = true;
|
||||||
eslint.enable = true;
|
eslint.enable = true;
|
||||||
elixirls.enable = true;
|
elixirls.enable = true;
|
||||||
|
fortls.enable = true;
|
||||||
# pkgs.fsautocomplete only supports linux platforms
|
# pkgs.fsautocomplete only supports linux platforms
|
||||||
fsautocomplete.enable = pkgs.stdenv.isLinux;
|
fsautocomplete.enable = pkgs.stdenv.isLinux;
|
||||||
futhark-lsp.enable = true;
|
futhark-lsp.enable = true;
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue