earnest ma 2023-03-12 12:44:03 -04:00
parent ec00b1b3ee
commit 24f6bf01cd
Signed by: earnest ma
GPG Key ID: A343F43342EB6E2A
2 changed files with 22 additions and 1 deletions

View File

@ -107,6 +107,23 @@ the compiled PDF version) in pympress."
:config
(edit-server-start))
(defun assignment-ui-start()
"UI modifications when working on assignments (in Python) with long function headers"
(interactive)
(which-function-mode +1)
(semantic-mode +1)
(semantic-stickyfunc-mode +1))
(defun assignment-ui-stop()
"Disable \'assignment-ui-start\'"
(interactive)
(which-function-mode -1)
(semantic-mode -1)
(semantic-stickyfunc-mode -1))
(setq magit-revision-show-gravatars '("^Author: " . "^Commit: "))
;; Whenever you reconfigure a package, make sure to wrap your config in an
;; `after!' block, otherwise Doom's defaults may override your settings. E.g.
;;

View File

@ -59,9 +59,13 @@
(package! subed
:recipe (:host github :repo "sachac/subed"
:files ("subed/*.el")))
(package! cook-mode
:recipe (:host github :repo "cooklang/cook-mode"))
(package! ess-view)
(package! ess-view-data)
(package! keycast)
(package! keycast
:recipe (:host github :repo "tarsius/keycast"
:branch "main"))
(package! pandoc-mode)
(package! wakatime-mode)
(package! w3m)