add helix text editor

This commit is contained in:
Colin 2023-07-04 03:28:54 +00:00
parent ebf6f46948
commit 61cbdc2c85
3 changed files with 11 additions and 0 deletions

View File

@ -80,6 +80,7 @@
# "gocryptfs"
# "gopass"
# "gopass-jsonapi"
"helix" # text editor
"kitty" # TODO: move to GUI, but `ssh servo` from kitty sets `TERM=xterm-kitty` in the remove and breaks things
"libsecret" # for managing user keyrings. TODO: what needs this? lift into the consumer
"lm_sensors" # for sensors-detect. TODO: what needs this? lift into the consumer

View File

@ -10,6 +10,7 @@
./gnome-feeds.nix
./gpodder.nix
./gthumb.nix
./helix.nix
./imagemagick.nix
./jellyfin-media-player.nix
./kitty

View File

@ -0,0 +1,9 @@
# Helix text editor
# debug log: `~/.cache/helix/helix.log`
# binary name is `hx`
{ ... }:
{
sane.programs.helix = {
persist.plaintext = [ ".config/helix/runtime/grammars" ];
};
}