My NixOS and Home Manager configurations
10
fork

Configure Feed

Select the types of activity you want to include in your feed.

use emacsclient -r as editor when in vterm

quasigod 272c0c29 e36ca96e

+8
+8
modules/apps/nushell.nix
··· 43 43 ll = "ls -al"; 44 44 tree = "eza -T"; 45 45 em = "job spawn { emacsclient -c . }"; 46 + e = "emacsclient -r"; 46 47 }; 47 48 extraConfig = '' 48 49 $env.config = { ··· 68 69 event: { edit: BackspaceWord } 69 70 } 70 71 ] 72 + if "INSIDE_EMACS" in $env { 73 + $env.EDITOR = "emacsclient -r" 74 + $env.VISUAL = "emacsclient -r" 75 + } 76 + def hx --wrapped [...rest: string] { 77 + nu -c $env.EDITOR ...$rest 78 + } 71 79 ''; 72 80 }; 73 81 carapace = {