Compare commits

..

6 Commits

3 changed files with 60 additions and 33 deletions

View File

@ -61,6 +61,28 @@ in {
thunderbird.enable = true; thunderbird.enable = true;
}; };
"luhbots" = { "luhbots" = {
address = "max.kaenner@luhbots-hannover.de";
userName = "max.kaenner@luhbots-hannover.de";
realName = "Max Känner";
imap = {
host = "mxe96b.netcup.net";
port = 993;
tls = {
enable = true;
useStartTls = false;
};
};
smtp = {
host = "mxe96b.netcup.net";
port = 465;
tls = {
enable = true;
useStartTls = false;
};
};
thunderbird.enable = true;
};
"luhbots-alt" = {
address = "max.kaenner@luhbots.de"; address = "max.kaenner@luhbots.de";
userName = "max.kaenner@luhbots.de"; userName = "max.kaenner@luhbots.de";
realName = "Max Känner"; realName = "Max Känner";

View File

@ -49,7 +49,6 @@ in {
zig zig
cargo cargo
rust-analyzer rust-analyzer
rustup
nodejs nodejs
nixd nixd
alejandra alejandra

View File

@ -1,35 +1,41 @@
---@type LazySpec ---@type LazySpec
return { return {
"AstroNvim/astrocore", "AstroNvim/astrocore",
opts = { opts = {
options = { options = {
opt = { opt = {
relativenumber = false, relativenumber = false,
number = true, number = true,
spell = true, spell = true,
signcolumn = "yes", signcolumn = "yes",
wrap = true, wrap = true,
colorcolumn = "80,120", colorcolumn = "80,120",
}, },
g = { g = {
inlay_hints_enabled = true, inlay_hints_enabled = true,
}, },
}, },
lsp = { lsp = {
config = { config = {
rust_analyzer = { rust_analyzer = {
settings = { settings = {
["rust-analyzer"] = { ["rust-analyzer"] = {
cargo = { buildScripts = { enable = true } }, cargo = {
procMacro = { enable = true }, buildScripts = { enable = true },
check = { allFeatures = false,
command = "clippy", extraArgs = { "--release" },
}, },
}, installCargo = false,
}, installRustc = false,
}, procMacro = { enable = true },
clangd = { capabilities = { offsetEncoding = "utf-8" } }, check = {
}, command = "clippy",
}, },
}, },
},
},
clangd = { capabilities = { offsetEncoding = "utf-8" } },
},
},
},
} }