this repo has no description
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

doom configs

+8 -1
+7 -1
doom-config/config.el
··· 88 88 org-todo-repeat-to-state "TODO" 89 89 org-pretty-entities t 90 90 org-use-tag-inheritance nil 91 - 92 91 org-agenda-ndays 1 93 92 org-agenda-show-all-dates t 94 93 org-agenda-start-on-weekday nil ··· 205 204 ;; projectile 206 205 (setq projectile-project-search-path '("~/developer/src/personal/" 207 206 "~/developer/src/work/")) 207 + 208 + (use-package! super-save 209 + :config 210 + (super-save-mode +1) 211 + (setq auto-save-default nil) 212 + (setq super-save-remote-files nil) 213 + (setq super-save-auto-save-when-idle t)) 208 214 209 215 ;; Haskell 210 216 (setq haskell-process-type 'cabal-new-repl
+1
doom-config/packages.el
··· 21 21 22 22 ;; To install SOME-PACKAGE from MELPA, ELPA or emacsmirror: 23 23 ;(package! some-package) 24 + (package! super-save) 24 25 25 26 ;; To install a package directly from a particular repo, you'll need to specify 26 27 ;; a `:recipe'. You'll find documentation on what `:recipe' accepts here: