main
parent
ec00b1b3ee
commit
24f6bf01cd
|
@ -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.
|
||||
;;
|
||||
|
|
|
@ -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)
|
||||
|
|
Loading…
Reference in New Issue