summaryrefslogtreecommitdiffstats
path: root/.emacs.d
diff options
context:
space:
mode:
authorAmin Bandali <bandali@kelar.org>2025-02-28 19:33:16 -0500
committerAmin Bandali <bandali@kelar.org>2025-02-28 19:33:16 -0500
commit1214ac92544ab74d227955affbd0a67744a5785b (patch)
tree4acfdad1e0b458bd51219a4591aa7d268d4fab23 /.emacs.d
parent97e8560afba58a180b662a263f4da6c5b1ab0df1 (diff)
downloadconfigs-1214ac92544ab74d227955affbd0a67744a5785b.tar.gz
configs-1214ac92544ab74d227955affbd0a67744a5785b.tar.xz
configs-1214ac92544ab74d227955affbd0a67744a5785b.zip
Various updates
Drop eshell, for now, since I've not been meaningfully using it.
Diffstat (limited to '.emacs.d')
-rw-r--r--.emacs.d/eshell/alias20
-rw-r--r--.emacs.d/init.el1
-rw-r--r--.emacs.d/lisp/bandali-eshell.el78
3 files changed, 0 insertions, 99 deletions
diff --git a/.emacs.d/eshell/alias b/.emacs.d/eshell/alias
deleted file mode 100644
index a1a1e40..0000000
--- a/.emacs.d/eshell/alias
+++ /dev/null
@@ -1,20 +0,0 @@
-alias .. cd ..
-alias ... cd ../..
-alias d dired $*
-alias e find-file-other-window $1
-alias ee find-file $1
-alias emacs find-file $1
-alias gd magit-diff-unstaged
-alias gds magit-diff-staged
-alias git git --no-pager $*
-alias l ls -l $*
-alias la ls -al $*
-alias ll ls -al $*
-alias man woman $1
-alias up eshell-up $1
-alias pk eshell-up-peek $1
-alias vi find-file $1
-alias vim find-file $1
-alias mbsync mbsync -c $XDG_CONFIG_HOME/isync/mbsyncrc $*
-alias getmail getmail --getmaildir $XDG_CONFIG_HOME/getmail --rcfile getmailrc $*
-alias m mbsync kelar; mbsync ia; getmail
diff --git a/.emacs.d/init.el b/.emacs.d/init.el
index 7ced652..7250ebf 100644
--- a/.emacs.d/init.el
+++ b/.emacs.d/init.el
@@ -155,7 +155,6 @@ plain variables. This means that `setopt' will execute any
(require 'bandali-utils)
(require 'bandali-prog)
;; (require 'bandali-exwm)
-(require 'bandali-eshell)
(require 'bandali-ibuffer)
(require 'bandali-dired)
;; Email with Gnus and message
diff --git a/.emacs.d/lisp/bandali-eshell.el b/.emacs.d/lisp/bandali-eshell.el
deleted file mode 100644
index 4b96f91..0000000
--- a/.emacs.d/lisp/bandali-eshell.el
+++ /dev/null
@@ -1,78 +0,0 @@
-;;; bandali-eshell.el --- bandali's Eshell setup -*- lexical-binding: t; -*-
-
-;; Copyright (C) 2018-2025 Amin Bandali <bandali@gnu.org>
-
-;; Author: Amin Bandali <bandali@gnu.org>
-;; Keywords: processes
-
-;; This program is free software; you can redistribute it and/or modify
-;; it under the terms of the GNU General Public License as published by
-;; the Free Software Foundation, either version 3 of the License, or
-;; (at your option) any later version.
-
-;; This program is distributed in the hope that it will be useful,
-;; but WITHOUT ANY WARRANTY; without even the implied warranty of
-;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
-;; GNU General Public License for more details.
-
-;; You should have received a copy of the GNU General Public License
-;; along with this program. If not, see <https://www.gnu.org/licenses/>.
-
-;;; Commentary:
-
-;; My humble Eshell setup.
-
-;;; Code:
-
-(with-eval-after-load 'eshell
- (setopt
- eshell-hist-ignoredups t
- eshell-input-filter #'eshell-input-filter-initial-space
- eshell-prompt-regexp "^[^#$\n]* [#$] ; "
- eshell-prompt-function
- (lambda ()
- (let ((uid (if (functionp #'file-user-uid)
- #'file-user-uid ; (version<= "30" emacs-version)
- #'user-uid))) ; (version< emacs-version "30")
- (concat ": "
- (system-name)
- ":"
- (abbreviate-file-name (eshell/pwd))
- (unless (eshell-exit-success-p)
- (format " [%d]" eshell-last-command-status))
- (if (= (funcall uid) 0) " # " " $ ")
- "; "))))
-
- ;; `esh-mode'
- (eval-when-compile
- (defvar eshell-prompt-regexp)
- (declare-function eshell-life-is-too-much "esh-mode")
- (declare-function eshell-send-input "esh-mode"
- (&optional use-region queue-p no-newline)))
- (defun b/eshell-quit-or-delete-char (arg)
- (interactive "p")
- (if (and (eolp) (looking-back eshell-prompt-regexp nil))
- (eshell-life-is-too-much)
- (delete-char arg)))
- (defun b/eshell-clear ()
- (interactive)
- (let ((inhibit-read-only t))
- (erase-buffer))
- (eshell-send-input))
- (with-eval-after-load 'esh-mode
- (let ((m eshell-mode-map))
- (b/keymap-set m "C-d" #'b/eshell-quit-or-delete-char)
- (b/keymap-set m "C-S-l" #'b/eshell-clear)))
-
- ;; `esh-hist'
- (defun b/eshell-history ()
- (interactive)
- (completing-read "Eshell history: "
- (ring-elements eshell-history-ring)))
- (with-eval-after-load 'esh-hist
- (let ((m eshell-hist-mode-map))
- (b/keymap-set m "M-r" #'b/eshell-history))))
-(b/keymap-global-set "C-c s e" #'eshell)
-
-(provide 'bandali-eshell)
-;;; bandali-eshell.el ends here