mirror of
https://gitlab.com/upRootNutrition/dotfiles.git
synced 2025-06-17 02:25:12 -05:00
25 lines
440 B
Nix
Executable file
25 lines
440 B
Nix
Executable file
{
|
|
settings = {
|
|
editor = {
|
|
mouse = true;
|
|
auto-format = true;
|
|
soft-wrap = 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";
|
|
};
|
|
}
|