From 31e83c80166735ab290fd2a711f94a4749fd547e Mon Sep 17 00:00:00 2001 From: Chris Cochrun Date: Thu, 7 Jul 2022 06:12:00 -0500 Subject: [PATCH] adding a nix update alias to eshell --- README.org | 4 +++- init.el | 20 +++----------------- 2 files changed, 6 insertions(+), 18 deletions(-) diff --git a/README.org b/README.org index 08b4ce39..0f82e651 100644 --- a/README.org +++ b/README.org @@ -2666,7 +2666,9 @@ Let's add our own eshell prompt. and set the password cache to a significantly h ("clear" "clear-scrollback") ("!c" "eshell-previous-input 2") ("yay" "paru $1") - ("yeet" "paru -Rns $1"))) + ("yeet" "paru -Rns $1") + ("nupg" "upgrade-nix") + ("nupd" "update-nix"))) :general (chris/leader-keys diff --git a/init.el b/init.el index 3c8ae5c6..ceb6aba7 100644 --- a/init.el +++ b/init.el @@ -1868,7 +1868,9 @@ targets." ("clear" "clear-scrollback") ("!c" "eshell-previous-input 2") ("yay" "paru $1") - ("yeet" "paru -Rns $1"))) + ("yeet" "paru -Rns $1") + ("nupg" "upgrade-nix") + ("nupd" "update-nix"))) :general (chris/leader-keys @@ -2260,19 +2262,3 @@ interfere with the default `bongo-playlist-buffer'." gcmh-verbose nil)) (setq warning-suppress-types '((comp))) -(custom-set-variables - ;; custom-set-variables was added by Custom. - ;; If you edit it by hand, you could mess it up, so be careful. - ;; Your init file should contain only one such instance. - ;; If there is more than one, they won't work right. - '(pdf-misc-print-program "/usr/bin/lpr") - '(pdf-misc-print-program-args '("-o media=Letter" "-o fitplot")) - '(safe-local-variable-values - '((projectile-project-run-cmd . "./build/bin/presenter") - (projectile-project-compilation-cmd . "cmake -DCMAKE_EXPORT_COMPILE_COMMANDS=1 -B build/ . && make --dir build/")))) -(custom-set-faces - ;; custom-set-faces was added by Custom. - ;; If you edit it by hand, you could mess it up, so be careful. - ;; Your init file should contain only one such instance. - ;; If there is more than one, they won't work right. - '(org-modern-tag ((t :background "#9aedfe" :foreground "#282a36"))))