2024-08-10 09:59:23 +03:00
|
|
|
{ config, lib, ... }:
|
2024-06-18 17:14:05 +03:00
|
|
|
|
|
|
|
let inherit (lib.nix2lua) call; in
|
|
|
|
{
|
|
|
|
fn.lspconfig-eslint-on-attach = {
|
|
|
|
args = [ "client" "bufnr" ];
|
|
|
|
content = { bufnr, ... }: {
|
|
|
|
vim.augroup.eslint-fix = {
|
|
|
|
event = "BufWritePre";
|
|
|
|
buffer = bufnr;
|
|
|
|
command = "silent! EslintFixAll";
|
|
|
|
};
|
|
|
|
};
|
|
|
|
};
|
|
|
|
|
|
|
|
plugins.language-server.lspconfig.serverSettings = {
|
|
|
|
nil_ls = { };
|
|
|
|
rust_analyzer = {
|
|
|
|
settings.rust-analyzer = {
|
|
|
|
"server.path" = "rust-analyzer";
|
|
|
|
"updates.prompt" = false;
|
|
|
|
"updates.checkOnStartup" = false;
|
|
|
|
"checkOnSave.enable" = true;
|
|
|
|
"checkOnSave.command" = "clippy";
|
|
|
|
"cargo.autoreload" = true;
|
|
|
|
};
|
|
|
|
};
|
|
|
|
eslint = {
|
|
|
|
on_attach = config.fn.lspconfig-eslint-on-attach.lambda;
|
2024-08-10 09:58:48 +03:00
|
|
|
flags = {
|
|
|
|
allow_incremental_sync = false;
|
|
|
|
debounce_text_changes = 1000;
|
|
|
|
};
|
2024-06-18 17:14:05 +03:00
|
|
|
};
|
|
|
|
volar = {
|
|
|
|
init_options = {
|
|
|
|
typescript.tsdk = "./node_modules/typescript/lib";
|
|
|
|
};
|
|
|
|
};
|
|
|
|
ltex = {
|
|
|
|
language = "en-US";
|
|
|
|
languageToolHttpServerUri = "http://localhost:8081";
|
|
|
|
};
|
|
|
|
pylsp = { };
|
|
|
|
denols = {
|
|
|
|
root_dir = call "${config.plugin.nvim-lspconfig.varName}.util.root_pattern" [ "deno.json" "deno.jsonc" ];
|
|
|
|
};
|
|
|
|
jdtls = { cmd = [ "jdtls" ]; };
|
2024-08-10 06:25:55 +03:00
|
|
|
jsonls = { };
|
2024-06-18 17:14:05 +03:00
|
|
|
};
|
|
|
|
}
|