vim: Another nix lsp
Might be a tad too powerful for its own good, let's see
This commit is contained in:
parent
812e5acf6c
commit
dee90d9a96
|
@ -22,6 +22,7 @@
|
|||
|
||||
# nix
|
||||
lix
|
||||
nixpkgs-fmt
|
||||
|
||||
# Always on (graphical)
|
||||
] ++ lib.optionals config.frogeye.desktop.xorg [
|
||||
|
@ -62,9 +63,16 @@
|
|||
lua-ls.enable = true; # Lua (for Neovim debugging)
|
||||
perlpls.enable = config.frogeye.dev.perl; # Perl
|
||||
phpactor.enable = config.frogeye.dev.php; # PHP
|
||||
nixd = {
|
||||
# Nix
|
||||
nil-ls = {
|
||||
enable = true;
|
||||
settings.formatting.command = [ "nixpkgs-fmt" ];
|
||||
settings = {
|
||||
formatting.command = [ "nixpkgs-fmt" ];
|
||||
nix.flake = {
|
||||
autoArchive = true;
|
||||
autoEvalInputs = true;
|
||||
};
|
||||
};
|
||||
};
|
||||
# TODO Something for SQL. sqls is deprecated, sqlls is not in Nixpkgs. Probably needs a DB connection configured anyways?
|
||||
yamlls.enable = true; # YAML
|
||||
|
|
Loading…
Reference in a new issue