unf*** helix

Signed-off-by: Alex Stan <stan.alexandru@ichb.ro>
This commit is contained in:
Alex Stan 2023-05-20 19:40:15 +03:00
parent 4c0dac6b36
commit 14b3265fd0

View file

@ -110,38 +110,45 @@ in {
helix = { helix = {
enable = true; enable = true;
package = helix; package = helix;
languages.language = [ languages = {
{ language-server = with pkgs; {
name = "cpp"; cpp.command = "${clang-tools}/bin/clangd";
scope = "source.cpp"; c.command = "${clang-tools}/bin/clangd";
indent = { nix.command = "${nil}/bin/nil";
tab-width = 4; };
unit = " "; language = [
}; {
language-server.command = "clangd"; name = "cpp";
file-types = [ "cpp" ]; scope = "source.cpp";
} indent = {
{ tab-width = 4;
name = "c"; unit = " ";
scope = "source.c"; };
indent = { # language-server.command = "clangd";
tab-width = 4; file-types = [ "cpp" ];
unit = " "; }
}; {
language-server.command = "clangd"; name = "c";
file-types = [ "c" ]; scope = "source.c";
} indent = {
{ tab-width = 4;
name = "nix"; unit = " ";
scope = "source.nix"; };
indent = { # language-server.command = "clangd";
tab-width = 4; file-types = [ "c" ];
unit = " "; }
}; {
language-server.command = "nil"; name = "nix";
file-types = [ "nix" ]; scope = "source.nix";
} indent = {
]; tab-width = 4;
unit = " ";
};
# language-server.command = "nil";
file-types = [ "nix" ];
}
];
};
settings = { settings = {
theme = "everblush"; theme = "everblush";
editor = { editor = {