Compare commits

...

2 Commits

Author SHA1 Message Date
Mateus Rodrigues
a9c138bec8 Merge branch 'master' of ssh://git.lambdashire.com:9774/mprodrigues/emacs.d 2026-07-10 16:50:47 +01:00
Mateus Rodrigues
44eae28d7c add eat 2026-07-10 16:49:36 +01:00

View File

@@ -82,6 +82,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
@@ -156,6 +167,18 @@
:defer t
: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")