Merge branch 'master' of ssh://git.lambdashire.com:9774/mprodrigues/emacs.d

This commit is contained in:
Mateus Rodrigues
2026-07-10 16:50:47 +01:00
2 changed files with 18 additions and 33 deletions

View File

@@ -29,8 +29,15 @@
;; Org
(use-package org
:config
(load "~/.emacs.d/elisp/org-setup.el"))
;; The following binds are always needed. Why?
:bind (("\C-cl" . 'org-store-link)
("\C-ca" . 'org-agenda)
("\C-cc" . 'org-capture))
:hook ((org-shiftup-final . windmove-up)
(org-shiftleft-final . windmove-left)
(org-shiftdown-final-hook . windmove-down)
(org-shiftright-final . windmove-right))
:config (load "~/.emacs.d/elisp/org-setup.el"))
(use-package org-ref)
;; Writing
@@ -157,10 +164,8 @@
(use-package eglot
:straight (:type built-in)
:ensure t
:defer t
:hook ((python-base-mode . eglot-ensure))
)
:hook ((python-base-mode . eglot-ensure)))
(use-package dape)