From 44eae28d7caec97580900f791a40a1ea2fade581 Mon Sep 17 00:00:00 2001 From: Mateus Rodrigues Date: Fri, 10 Jul 2026 16:49:36 +0100 Subject: [PATCH] add eat --- elisp/extras.el | 23 +++++++++++++++++++++++ 1 file changed, 23 insertions(+) diff --git a/elisp/extras.el b/elisp/extras.el index ad360f0..1fba925 100644 --- a/elisp/extras.el +++ b/elisp/extras.el @@ -75,6 +75,17 @@ ;; We need colors in eshell (use-package xterm-color) +;; eat terminal emulator: +(use-package eat + :straight (:type git + :host codeberg + :repo "akib/emacs-eat" + :files ("*.el" ("term" "term/*.el") "*.texi" + "*.ti" ("terminfo/e" "terminfo/e/*") + ("terminfo/65" "terminfo/65/*") + ("integration" "integration/*") + (:exclude ".dir-locals.el" "*-tests.el")))) + ;; git (use-package magit :demand t @@ -151,6 +162,18 @@ :hook ((python-base-mode . eglot-ensure)) ) +(use-package dape) + +;; For a more ergonomic Emacs and `dape' experience +(use-package repeat + :custom + (repeat-mode +1)) + +;; Left and right side windows occupy full frame height +(use-package emacs + :custom + (window-sides-vertical t)) + ;; TRAMP (load "~/.emacs.d/elisp/tramp-setup.el") (load "~/.emacs.d/elisp/outline-keymap.el")