diff options
author | Marek Paśnikowski <marekpasnikowski@protonmail.com> | 2022-12-03 23:45:37 +0100 |
---|---|---|
committer | Marek Paśnikowski <marekpasnikowski@protonmail.com> | 2022-12-03 23:45:37 +0100 |
commit | 3711ef95ec52d884e55e81969ff2d84f104cb33c (patch) | |
tree | 490db60eb3f8a15fabb87ded49f7d665ffad9aef | |
parent | 327c631fa6246e28cbec3f26f75e434c1b62bd6f (diff) |
Disable Emacs UI
-rw-r--r-- | home-configuration.scm | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/home-configuration.scm b/home-configuration.scm index 3f6df68..f1df9b4 100644 --- a/home-configuration.scm +++ b/home-configuration.scm @@ -109,7 +109,8 @@ (environment-variables '(("EDITOR" . "emacs") ("NVM_DIR" . "$HOME/src/nvm") ("GUILE_AUTO_COMPILE" . "0"))) - (aliases `(("grep" . "grep --color=auto ") + (aliases `(("emacs" . "emacs -nw") + ("grep" . "grep --color=auto ") ("ll" . "ls -l ") ("ls" . "ls -p --color=auto ") ("pull-guix" . ,pull-guix) |