This commit is contained in:
Mateus Rodrigues
2026-07-10 16:49:36 +01:00
parent b7ec935770
commit 44eae28d7c

View File

@@ -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")