home/programs/editors: configure helix

This commit is contained in:
Anthony Rodriguez 2024-10-14 23:52:35 +02:00
parent 90cfd10876
commit 34106c074c
Signed by: nezia
GPG key ID: EE3BE97C040A86CE

View file

@ -15,7 +15,25 @@ in {
auto-format = true; auto-format = true;
auto-completion = true; auto-completion = true;
completion-timeout = 5; completion-timeout = 5;
color-modes = true;
completion-trigger-len = 1;
completion-replace = true;
cursorline = true;
cursor-shape = {
insert = "bar";
normal = "block";
select = "underline";
};
indent-guides.render = true;
lsp.display-inlay-hints = true;
statusline.center = ["position-percentage"];
true-color = true;
whitespace.characters = {
newline = "";
tab = "";
};
}; };
keys.normal = { keys.normal = {
space = { space = {
space = "file_picker"; space = "file_picker";
@ -30,12 +48,16 @@ in {
language = [ language = [
{ {
name = "nix"; name = "nix";
formatter = {command = getExe pkgs.alejandra;}; auto-format = true;
} }
]; ];
language-server = {
nil = {
command = lib.getExe pkgs.nil;
config.nil.formatting.command = ["${lib.getExe pkgs.alejandra}" "-q"];
};
};
}; };
}; };
home.packages = [
pkgs.nil
];
} }