helix: fix config

This commit is contained in:
Leonardo Eugênio 2024-02-10 00:10:16 -03:00
parent b0bd973365
commit 9f35809cc6
1 changed files with 11 additions and 4 deletions

View File

@ -77,14 +77,21 @@ in
keys.insert = { "A-k" = "normal_mode"; };
};
languages.language = [
{ name = "nix"; auto-format = true; formatter = { command = "nixpkgs-fmt"; }; }
{ name = "rust"; auto-format = true; }
{
name = "php";
config.intelephense.format.braces = "k&r";
name = "nix";
auto-format = true;
formatter.command = "nixpkgs-fmt";
}
{
name = "rust";
auto-format = true;
}
];
languages.language-server = {
intelephense.config.intelephense.format.braces = "k&r";
};
themes = {
my-theme = {
"inherits" = "gruvbox";