update and use new domain for kavita

This commit is contained in:
Kopatz
2025-10-01 15:42:13 +02:00
parent ad2024b83f
commit 7e6ea5246d
6 changed files with 153 additions and 138 deletions

View File

@@ -1,92 +1,103 @@
{ pkgs, ... }:
{
lsp = {
inlayHints.enable = true;
servers = {
bashls.enable = true;
#ccls.enable = true;
clangd.enable = true;
cssls.enable = true;
gopls.enable = true;
clojure_lsp.enable = true;
qmlls =
{
enable = true;
settings.cmd = [ "qmlls" "-E" ];
};
nixd = {
enable = true;
settings = {
nixpkgs.expr = ''import <nixpkgs> { }'';
formatting.command = [ "nixpkgs-fmt" ];
options.nixos.expr = ''(builtins.getFlake ("/home/kopatz/projects/github/nix-config")).nixosConfigurations.kop-pc.options'';
};
};
html.enable = true;
dartls.enable = true;
ts_ls.enable = true;
pylsp.enable = true;
lua_ls.enable = true;
csharp_ls = {
enable = true;
package = pkgs.csharp-ls;
};
tinymist.enable = true; # typst
};
keymaps= [
{
key = "gd";
lspBufAction = "definition";
#desc = "LSP: [G]o to [D]efinition";
}
{
key = "gD";
lspBufAction = "declaration";
#desc = "LSP: [G]o to [D]eclaration";
}
{
key = "gT";
lspBufAction = "type_definition";
#desc = "Goto type definition";
}
{
key = "gr";
lspBufAction = "references";
# desc = "LSP: [G]o to [R]eferences";
}
{
key = "gI";
lspBufAction = "implementation";
#desc = "LSP: [G]o to [I]mplementation";
}
{
key = "K";
lspBufAction = "hover";
#desc = "LSP: Show documentation";
}
{
key = "<c-k>";
lspBufAction = "signature_help";
#desc = "LSP: Show signature help";
}
{
key = "<leader>rn";
lspBufAction = "rename";
#desc = "LSP: [R]e[n]ame";
}
{
key = "<leader>ca";
lspBufAction = "code_action";
#desc = "LSP: [C]ode [A]ction";
}
{
key = "<leader>ds";
lspBufAction = "document_symbol";
#desc = "LSP: [D]ocument [S]ymbols";
}
{
key = "<leader>ws";
lspBufAction = "workspace_symbol";
#desc = "LSP [W]orkspace [S]ymbols";
}
];
};
plugins = {
otter = {
# provide lsp functionality for code embedded in other languages
enable = true;
settings.handle_leading_whitespace = true;
};
lsp = {
enable = true;
inlayHints = true;
servers = {
bashls.enable = true;
#ccls.enable = true;
clangd.enable = true;
cssls.enable = true;
gopls.enable = true;
clojure_lsp.enable = true;
qmlls =
{
enable = true;
cmd = [ "qmlls" "-E" ];
};
nixd = {
enable = true;
settings = {
nixpkgs.expr = ''import <nixpkgs> { }'';
formatting.command = [ "nixpkgs-fmt" ];
options.nixos.expr = ''(builtins.getFlake ("/home/kopatz/projects/github/nix-config")).nixosConfigurations.kop-pc.options'';
};
};
html.enable = true;
dartls.enable = true;
ts_ls.enable = true;
pylsp.enable = true;
lua_ls.enable = true;
csharp_ls = {
enable = true;
package = pkgs.csharp-ls;
};
tinymist.enable = true; # typst
};
keymaps.lspBuf = {
gd = {
action = "definition";
desc = "LSP: [G]o to [D]efinition";
};
gD = {
action = "declaration";
desc = "LSP: [G]o to [D]eclaration";
};
gT = {
action = "type_definition";
desc = "Goto type definition";
};
gr = {
action = "references";
desc = "LSP: [G]o to [R]eferences";
};
gI = {
action = "implementation";
desc = "LSP: [G]o to [I]mplementation";
};
"K" = {
action = "hover";
desc = "LSP: Show documentation";
};
"<c-k>" = {
action = "signature_help";
desc = "LSP: Show signature help";
};
"<leader>rn" = {
action = "rename";
desc = "LSP: [R]e[n]ame";
};
"<leader>ca" = {
action = "code_action";
desc = "LSP: [C]ode [A]ction";
};
"<leader>ds" = {
action = "document_symbol";
desc = "LSP: [D]ocument [S]ymbols";
};
"<leader>ws" = {
action = "workspace_symbol";
desc = "LSP [W]orkspace [S]ymbols";
};
};
};
lsp-lines = {
enable = true;
};