Compare commits

..

No commits in common. "065ee1a066ccd2add8cdc115fdd3666d6ce01c48" and "7d2771d133e8da2fa7ef8c9d7daa0f9ac3ee3070" have entirely different histories.

3 changed files with 33 additions and 60 deletions

View File

@ -61,28 +61,6 @@ 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,6 +49,7 @@ in {
zig zig
cargo cargo
rust-analyzer rust-analyzer
rustup
nodejs nodejs
nixd nixd
alejandra alejandra

View File

@ -1,41 +1,35 @@
---@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 = { cargo = { buildScripts = { enable = true } },
buildScripts = { enable = true }, procMacro = { enable = true },
allFeatures = false, check = {
extraArgs = { "--release" }, command = "clippy",
}, },
installCargo = false, },
installRustc = false, },
procMacro = { enable = true }, },
check = { clangd = { capabilities = { offsetEncoding = "utf-8" } },
command = "clippy", },
}, },
}, },
},
},
clangd = { capabilities = { offsetEncoding = "utf-8" } },
},
},
},
} }