Compare commits

..

No commits in common. "db427c28eaf110a323663475e03e96dc153a87e8" and "f44474ec3e0010d3cf3c1e90e9dde715c01af924" have entirely different histories.

3 changed files with 9 additions and 8 deletions

12
flake.lock generated
View file

@ -587,11 +587,11 @@
] ]
}, },
"locked": { "locked": {
"lastModified": 1744117652, "lastModified": 1742655702,
"narHash": "sha256-t7dFCDl4vIOOUMhEZnJF15aAzkpaup9x4ZRGToDFYWI=", "narHash": "sha256-jbqlw4sPArFtNtA1s3kLg7/A4fzP4GLk9bGbtUJg0JQ=",
"owner": "nix-community", "owner": "nix-community",
"repo": "home-manager", "repo": "home-manager",
"rev": "b4e98224ad1336751a2ac7493967a4c9f6d9cb3f", "rev": "0948aeedc296f964140d9429223c7e4a0702a1ff",
"type": "github" "type": "github"
}, },
"original": { "original": {
@ -958,11 +958,11 @@
}, },
"nixpkgs_10": { "nixpkgs_10": {
"locked": { "locked": {
"lastModified": 1744168086, "lastModified": 1742512142,
"narHash": "sha256-S9M4HddBCxbbX1CKSyDYgZ8NCVyHcbKnBfoUXeRu2jQ=", "narHash": "sha256-8XfURTDxOm6+33swQJu/hx6xw1Tznl8vJJN5HwVqckg=",
"owner": "nixos", "owner": "nixos",
"repo": "nixpkgs", "repo": "nixpkgs",
"rev": "60e405b241edb6f0573f3d9f944617fe33ac4a73", "rev": "7105ae3957700a9646cc4b766f5815b23ed0c682",
"type": "github" "type": "github"
}, },
"original": { "original": {

View file

@ -30,8 +30,8 @@ in
echo "New kakoune session started (pid = $last_pid, session name = $kak_session)." echo "New kakoune session started (pid = $last_pid, session name = $kak_session)."
# Rebind $VISUAL, $EDITOR and e command # Rebind $VISUAL, $EDITOR and e command
set -gx VISUAL kak -c $kak_session set -gx VISUAL "kak -c $kak_session"
set -gx EDITOR kak -c $kak_session set -gx EDITOR "kak -c $kak_session"
''; '';
kill-kak-session = '' kill-kak-session = ''

View file

@ -170,6 +170,7 @@ with lib;
''; '';
programs.fish.shellAliases = { programs.fish.shellAliases = {
e = lib.mkForce "kitten edit-in-kitty";
"ssh+" = "kitten ssh"; "ssh+" = "kitten ssh";
"clip" = "kitten clipboard"; "clip" = "kitten clipboard";
"eg" = "kitten hyperlinked-grep"; "eg" = "kitten hyperlinked-grep";