mirror of
https://github.com/willemml/dotfiles.nix.git
synced 2025-04-12 19:27:17 +00:00
Fixes kitty edit-in-kitty with emacsclient
This commit is contained in:
parent
74cc06afbb
commit
40f89416ac
2 changed files with 4 additions and 0 deletions
|
@ -8,6 +8,7 @@
|
|||
enable = true;
|
||||
extraConfig = ''
|
||||
include themes/draculaplus.conf
|
||||
editor "${config.programs.emacs.finalPackage.out}/bin/emacsclient" -c
|
||||
'';
|
||||
shellIntegration.enableZshIntegration = true;
|
||||
|
||||
|
|
|
@ -77,6 +77,8 @@
|
|||
};
|
||||
|
||||
shellAliases = rec {
|
||||
s = "kitten ssh";
|
||||
ke = "kitten edit-in-kitty";
|
||||
cd = "z";
|
||||
dotd = "cd ${config.home.sessionVariables.DOTDIR} ";
|
||||
e = "emacsclient -c -nw";
|
||||
|
@ -84,6 +86,7 @@
|
|||
emw = "emacs";
|
||||
ew = "emacsclient -c -n";
|
||||
l = "ls -1";
|
||||
lh = "ls --hyperlink";
|
||||
np = "nix-shell -p";
|
||||
org = "cd ${config.home.sessionVariables.ORGDIR} ";
|
||||
ubc = "cd ${config.home.sessionVariables.UBCDIR} ";
|
||||
|
|
Loading…
Add table
Reference in a new issue