Lint string, macros.el

More of the same type of linting... basically preferring `namespace-` instead of
`namespace/`.
This commit is contained in:
William Carroll 2020-08-31 23:28:47 +01:00
parent 158f810981
commit a638e15c0d
36 changed files with 176 additions and 204 deletions

View file

@ -15,6 +15,7 @@
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
(require 'f)
(require 'macros)
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
;; Configuration
@ -24,15 +25,15 @@
:config
(evil-set-initial-state 'org-mode 'normal)
(general-add-hook 'org-mode-hook
(list (disable linum-mode)
(disable company-mode)))
(list (macros-disable linum-mode)
(macros-disable company-mode)))
(setq org-startup-folded nil)
(setq org-todo-keywords '((sequence "TODO" "BLOCKED" "DONE")))
(general-unbind 'normal org-mode-map "M-h" "M-j" "M-k" "M-l"))
(use-package org-bullets
:config
(general-add-hook 'org-mode-hook (enable org-bullets-mode)))
(general-add-hook 'org-mode-hook (macros-enable org-bullets-mode)))
(provide 'wpc-org)
;;; wpc-org.el ends here