Compare commits

...

3 commits

Author SHA1 Message Date
db427c28ea
Don't quote $VISUAL and $EDITOR 2025-04-11 18:53:57 +02:00
316f4ea034
Update nixpkgs 2025-04-11 13:56:46 +02:00
9924e2b44f
Revert the e alias in kitty
It's not that good, and cannot be used to create new files
2025-04-10 11:36:23 +02:00
3 changed files with 8 additions and 9 deletions

12
flake.lock generated
View file

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