summaryrefslogtreecommitdiff
path: root/emacs
diff options
context:
space:
mode:
authortslil <tslil@posteo.de>2026-05-15 09:12:21 +0100
committertslil <tslil@posteo.de>2026-05-15 09:12:44 +0100
commitd7bdc086a212879e6e728366f844295c4e73c8fd (patch)
treee00a7f2a8cddcfe92799f2db9637c83788b6b941 /emacs
parentdf3db5734d449326e72d6599693509446049dfc5 (diff)
[emacs] switch to eat
Diffstat (limited to 'emacs')
-rw-r--r--emacs/inits/20-programming.el6
-rw-r--r--emacs/inits/70-global-keybinds.el9
2 files changed, 6 insertions, 9 deletions
diff --git a/emacs/inits/20-programming.el b/emacs/inits/20-programming.el
index ef5fbd9..47619c7 100644
--- a/emacs/inits/20-programming.el
+++ b/emacs/inits/20-programming.el
@@ -1,4 +1,4 @@
-;; Time-stamp: <2026-04-23 20h46 BST (anker)>
+;; Time-stamp: <2026-05-15 09h11 BST (anker)>
;; -----------------------------------------------------------------------------
;; General setup
@@ -55,6 +55,10 @@
:config
(dtrt-indent-global-mode t))
+(use-package eat
+ :ensure
+ :defer)
+
(defun programming-setup ()
(interactive)
(spell-fu-mode -1)
diff --git a/emacs/inits/70-global-keybinds.el b/emacs/inits/70-global-keybinds.el
index 866cdd2..de2b17b 100644
--- a/emacs/inits/70-global-keybinds.el
+++ b/emacs/inits/70-global-keybinds.el
@@ -1,4 +1,4 @@
-;; Time-stamp: <2024-07-13 15h08 CEST (471b3659)>
+;; Time-stamp: <2026-05-15 09h11 BST (anker)>
(setq time-stamp-active t
time-stamp-line-limit 3
@@ -25,13 +25,6 @@
(global-set-key (kbd "C-z") 'nil)
-(use-package eterm-256color
- :ensure
- :defer
- :config
- (add-hook 'term-mode-hook #'eterm-256color-mode)
- (global-set-key (kbd "C-c c") 'ansi-term))
-
(global-set-key (kbd "C-x e") 'eval-expression)
(global-set-key (kbd "M-i") 'indent-region)