Compare commits
6 Commits
7d2771d133
...
065ee1a066
Author | SHA1 | Date | |
---|---|---|---|
065ee1a066 | |||
d1ca1b95b8 | |||
8164630ae7 | |||
80a865d1f6 | |||
0f52c25063 | |||
a9e9fbb543 |
@ -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";
|
||||||
|
@ -49,7 +49,6 @@ in {
|
|||||||
zig
|
zig
|
||||||
cargo
|
cargo
|
||||||
rust-analyzer
|
rust-analyzer
|
||||||
rustup
|
|
||||||
nodejs
|
nodejs
|
||||||
nixd
|
nixd
|
||||||
alejandra
|
alejandra
|
||||||
|
@ -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" } },
|
||||||
|
},
|
||||||
|
},
|
||||||
|
},
|
||||||
}
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user