w3m, keycast, edit-server
parent
4a370c2d61
commit
e23148b1b0
|
@ -90,6 +90,23 @@ the compiled PDF version) in pympress."
|
|||
(setq ispell-personal-dictionary (expand-file-name "~/.aspell.en.pws"))
|
||||
(setq ispell-dictionary "en_CA"))
|
||||
|
||||
(use-package! w3m)
|
||||
|
||||
;; https://github.com/tarsius/keycast/issues/7
|
||||
(use-package keycast
|
||||
:config
|
||||
(define-minor-mode keycast-mode
|
||||
"Show current command and its key binding in the mode line (fix for use with doom-mode-line)."
|
||||
:global t
|
||||
(if keycast-mode
|
||||
(add-hook 'pre-command-hook 'keycast--update t)
|
||||
(remove-hook 'pre-command-hook 'keycast--update)))
|
||||
(add-to-list 'global-mode-string '("" keycast-mode-line)))
|
||||
|
||||
(use-package! edit-server
|
||||
:config
|
||||
(edit-server-start))
|
||||
|
||||
;; 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.
|
||||
;;
|
||||
|
|
|
@ -61,5 +61,8 @@
|
|||
:files ("subed/*.el")))
|
||||
(package! ess-view)
|
||||
(package! ess-view-data)
|
||||
(package! keycast)
|
||||
(package! pandoc-mode)
|
||||
(package! wakatime-mode)
|
||||
(package! w3m)
|
||||
(package! edit-server)
|
||||
|
|
Loading…
Reference in New Issue