mirror of
https://gitlab.com/upRootNutrition/dotfiles.git
synced 2025-06-16 10:05:13 -05:00
24 lines
416 B
Nix
24 lines
416 B
Nix
{
|
|
settings = {
|
|
editor = {
|
|
mouse = true;
|
|
auto-format = true;
|
|
auto-save = true;
|
|
line-number = "relative";
|
|
lsp = {
|
|
display-messages = true;
|
|
display-inlay-hints = true;
|
|
};
|
|
};
|
|
keys = {
|
|
normal = {
|
|
space = {
|
|
f = ":format";
|
|
q = ":q";
|
|
w = ":w";
|
|
};
|
|
};
|
|
};
|
|
theme = "catppuccin_macchiato";
|
|
};
|
|
}
|