dotfiles/home/modules/helix/config/settings.nix

24 lines
385 B
Nix
Raw Normal View History

2024-11-20 17:47:07 -06:00
{
2025-01-08 01:05:45 -06:00
editor = {
mouse = true;
auto-format = true;
soft-wrap.enable = true;
auto-save = true;
line-number = "relative";
lsp = {
display-messages = true;
display-inlay-hints = true;
2024-11-20 17:47:07 -06:00
};
2025-01-08 01:05:45 -06:00
};
keys = {
normal = {
space = {
f = ":format";
q = ":q";
w = ":w";
2024-11-20 17:47:07 -06:00
};
};
};
2025-01-08 01:05:45 -06:00
theme = "catppuccin_macchiato";
2024-11-20 17:47:07 -06:00
}