mirror of
https://github.com/willemml/dotfiles.nix.git
synced 2025-04-13 03:37:18 +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;
|
enable = true;
|
||||||
extraConfig = ''
|
extraConfig = ''
|
||||||
include themes/draculaplus.conf
|
include themes/draculaplus.conf
|
||||||
|
editor "${config.programs.emacs.finalPackage.out}/bin/emacsclient" -c
|
||||||
'';
|
'';
|
||||||
shellIntegration.enableZshIntegration = true;
|
shellIntegration.enableZshIntegration = true;
|
||||||
|
|
||||||
|
|
|
@ -77,6 +77,8 @@
|
||||||
};
|
};
|
||||||
|
|
||||||
shellAliases = rec {
|
shellAliases = rec {
|
||||||
|
s = "kitten ssh";
|
||||||
|
ke = "kitten edit-in-kitty";
|
||||||
cd = "z";
|
cd = "z";
|
||||||
dotd = "cd ${config.home.sessionVariables.DOTDIR} ";
|
dotd = "cd ${config.home.sessionVariables.DOTDIR} ";
|
||||||
e = "emacsclient -c -nw";
|
e = "emacsclient -c -nw";
|
||||||
|
@ -84,6 +86,7 @@
|
||||||
emw = "emacs";
|
emw = "emacs";
|
||||||
ew = "emacsclient -c -n";
|
ew = "emacsclient -c -n";
|
||||||
l = "ls -1";
|
l = "ls -1";
|
||||||
|
lh = "ls --hyperlink";
|
||||||
np = "nix-shell -p";
|
np = "nix-shell -p";
|
||||||
org = "cd ${config.home.sessionVariables.ORGDIR} ";
|
org = "cd ${config.home.sessionVariables.ORGDIR} ";
|
||||||
ubc = "cd ${config.home.sessionVariables.UBCDIR} ";
|
ubc = "cd ${config.home.sessionVariables.UBCDIR} ";
|
||||||
|
|
Loading…
Add table
Reference in a new issue