minor kakoune and helix tomfoolery

This commit is contained in:
Leonardo Eugênio 2023-01-24 10:10:05 -03:00
parent fd5fcbccee
commit 86bd3f6b86
2 changed files with 6 additions and 3 deletions

View file

@ -1,5 +1,5 @@
{ config, pkgs, lib, ... }:
let inherit (pkgs.uservars) key theme color accent font;
let inherit (pkgs.uservars) key theme color accent font editor;
in {
config = {
programs.fish = {
@ -29,7 +29,10 @@ in {
};
shellAbbrs = {
off = "shutdown now";
v = "hx";
v = {
"helix" = "hx";
"kakoune" = "kak";
}.${editor};
ns = "nix develop --command $SHELL";
# system
sv = "sudo systemct";

View file

@ -128,5 +128,5 @@ rec {
dmenu = "bmenu";
desktop = "sway";
browser = "qutebrowser";
editor = "helix";
editor = "kakoune";
}