Fix Perl Language server

This commit is contained in:
Geoffrey Frogeye 2023-12-07 23:10:48 +01:00
parent 94d9bae95b
commit 85ac632025
Signed by: geoffrey
GPG key ID: C72403E7F82E6AD8

View file

@ -1,8 +1,9 @@
{ pkgs, lib, config, ... }:
let
nixvim = import (builtins.fetchGit {
url = "https://github.com/nix-community/nixvim";
ref = "nixos-23.11";
# UPST Ready to create a MR once the tests have ran
url = "https://github.com/GeoffreyFrogeye/nixvim";
ref = "perlls";
});
vim-shot-f = pkgs.vimUtils.buildVimPlugin {
pname = "vim-shot-f";
@ -156,11 +157,11 @@ in
};
};
servers = {
# FIXME ansiblels
ansiblels.enable = true; # Ansible
bashls.enable = true; # Bash
jsonls.enable = true; # JSON
lua-ls.enable = true; # Lua (for Neovim debugging)
# FIXME perlls
perlpls.enable = true; # Perl
pylsp = lib.mkIf config.frogeye.dev.python {
# Python
enable = true;
@ -195,7 +196,7 @@ in
};
phpactor.enable = true; # PHP
rnix-lsp.enable = true; # Nix
# FIXME sqlls
# TODO Something for SQL. sqls is deprecated, sqlls is not in Nixpkgs. Probably needs a DB connection configured anyways?
yamlls.enable = true; # YAML
# TODO Check out none-ls
};