about summary refs log tree commit diff
path: root/dotfiles
diff options
context:
space:
mode:
authorBaitinq <manuelpalenzuelamerino@gmail.com>2024-03-19 00:06:39 +0100
committerBaitinq <manuelpalenzuelamerino@gmail.com>2024-03-19 00:06:39 +0100
commitc5a4e002635b433bcca586b014e987268d54c290 (patch)
treed35f088f2787f8489ff0dfee5a22e55d30ff3ac1 /dotfiles
parentDotfiles: Nvim: Install copilot (diff)
downloadnixos-config-c5a4e002635b433bcca586b014e987268d54c290.tar.gz
nixos-config-c5a4e002635b433bcca586b014e987268d54c290.tar.bz2
nixos-config-c5a4e002635b433bcca586b014e987268d54c290.zip
Dofiles: Emacs: Add eat terminal
Diffstat (limited to 'dotfiles')
-rw-r--r--dotfiles/.emacs7
1 files changed, 6 insertions, 1 deletions
diff --git a/dotfiles/.emacs b/dotfiles/.emacs
index 3681dc3..388096c 100644
--- a/dotfiles/.emacs
+++ b/dotfiles/.emacs
@@ -263,10 +263,15 @@
   (:map evil-normal-state-map
   ("C-S-t" . centaur-tabs-mode)))
 
+(use-package eat
+    :ensure t
+    :init
+    (setq eat-term-name "xterm-256color"))
+
 (use-package shell-pop
   :ensure t
   :init
-  (setq shell-pop-shell-type '("terminal" "*terminal*" (lambda nil (term shell-pop-term-shell))))
+  (setq shell-pop-shell-type '("terminal" "*terminal*" (lambda nil (eat shell-pop-term-shell))))
   (setq shell-pop-term-shell "zsh")
   (my/leader-keys
     "t" '(shell-pop :wk "toggle terminal")))