switched to helix

This commit is contained in:
KoenDR06 2025-06-11 15:00:18 +02:00
parent 09e213195d
commit 59268a713c
2 changed files with 25 additions and 1 deletions

View file

@ -18,7 +18,7 @@ in {
config = mkIf cfg.enable {
home-manager.users.${homeCfg.username} = {
imports = [./terminal/neovim.nix];
imports = [./terminal/helix.nix];
};
services.lorri.enable = true;

View file

@ -0,0 +1,24 @@
{
config,
lib,
pkgs,
...
}: {
programs.helix = {
enable = true;
settings = {
theme = "catppuccin_macchiato";
editor.cursor-shape = {
normal = "block";
insert = "bar";
select = "underline";
};
};
languages.language = [
{
name = "nix";
auto-format = false;
}
];
};
}