switched to helix
This commit is contained in:
parent
09e213195d
commit
59268a713c
2 changed files with 25 additions and 1 deletions
|
|
@ -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;
|
||||
|
|
|
|||
24
modules/apps/terminal/helix.nix
Normal file
24
modules/apps/terminal/helix.nix
Normal 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;
|
||||
}
|
||||
];
|
||||
};
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue