Modules/Helix: Undeprecate and enable helix

This commit is contained in:
2026-07-02 11:18:05 +02:00
parent 4f2486ae4a
commit b78a1b6e88
4 changed files with 9 additions and 7 deletions
+1
View File
@@ -15,6 +15,7 @@
./firefox
./fish
./git
./helix
./jellyfin-tui
./kitty
./lazygit
@@ -15,10 +15,10 @@ in {
options.homemodules.helix = import ./options.nix {inherit lib mylib;};
config = mkIf cfg.enable {
home.sessionVariables = {
EDITOR = "hx";
VISUAL = "hx";
};
# home.sessionVariables = {
# EDITOR = "hx";
# VISUAL = "hx";
# };
programs.helix = {
enable = true;
@@ -40,11 +40,11 @@ in {
# https://docs.helix-editor.com/configuration.html
settings = {
theme = "catppuccin_latte";
theme = "catppuccin_mocha";
editor = {
scrolloff = 10;
mouse = false; # Default true
middle-click-paste = false; # Default true
mouse = true;
middle-click-paste = true;
line-number = "relative";
cursorline = true;
color-modes = true;