From d9028787370ce62baa78818999aaa4030e814cc6 Mon Sep 17 00:00:00 2001 From: Franck Cuny Date: Sat, 30 Aug 2025 10:07:23 -0700 Subject: move eshell configuration to its own file --- home/programs/emacs/init.el | 19 +------------------ 1 file changed, 1 insertion(+), 18 deletions(-) (limited to 'home/programs/emacs/init.el') diff --git a/home/programs/emacs/init.el b/home/programs/emacs/init.el index e803900..5afbbeb 100644 --- a/home/programs/emacs/init.el +++ b/home/programs/emacs/init.el @@ -16,6 +16,7 @@ (require 'init-completion) (require 'init-text) (require 'init-programming) +(require 'init-eshell) (use-package server :config @@ -23,24 +24,6 @@ (unless (server-running-p) (server-start))) -(use-package eshell - :commands (eshell eshell-command) - :bind (("C-r" . consult-history)) - :custom - (eshell-hist-ignoredups t) - (eshell-history-size 50000) - (eshell-ls-dired-initial-args '("-h")) - (eshell-ls-initial-args "-h") - (eshell-ls-exclude-regexp "~\\'") - (eshell-save-history-on-exit t) - (eshell-stringify-t nil) - (eshell-term-name "ansi")) - -(eshell/alias "ls" "eza $*") -(eshell/alias "la" "eza -la $*") -(eshell/alias "ll" "eza -la -L=1 $*") -(eshell/alias "lt" "eza -aT -L=2 $*") - ;;; init.el ends here ;; byte-compile-warnings: (not docstrings lexical noruntime) ;; End: -- cgit v1.2.3