about summary refs log tree commit diff stats
path: root/config.org
diff options
context:
space:
mode:
authorCase Duckworth2021-01-26 12:42:19 -0600
committerCase Duckworth2021-01-26 12:42:19 -0600
commitcf1a2f40c61b0b7cd9cd2f4c8092892d9b92e4a3 (patch)
tree044bad80da15d14a80859fac50cb799ff60f4cfd /config.org
parentAdd link (diff)
downloademacs-cf1a2f40c61b0b7cd9cd2f4c8092892d9b92e4a3.tar.gz
emacs-cf1a2f40c61b0b7cd9cd2f4c8092892d9b92e4a3.zip
Comment out wc-mode
Diffstat (limited to 'config.org')
-rw-r--r--config.org20
1 files changed, 18 insertions, 2 deletions
diff --git a/config.org b/config.org index 9333511..95b821e 100644 --- a/config.org +++ b/config.org
@@ -1308,14 +1308,24 @@ already commented. That's it.
1308 1308
1309* Writing 1309* Writing
1310 1310
1311** Word count :package: 1311** COMMENT Word count :package:
1312
1313I'm just going to comment this out for right now because I honestly
1314don't know if it's that useful.
1312 1315
1313#+begin_src emacs-lisp :noweb-ref packages 1316#+begin_src emacs-lisp :noweb-ref packages
1314 (straight-use-package 'wc-mode) 1317 (straight-use-package 'wc-mode)
1315#+end_src 1318#+end_src
1316 1319
1317#+begin_src emacs-lisp :noweb-ref hooks 1320#+begin_src emacs-lisp :noweb-ref hooks
1318 (add-hook 'text-mode-hook #'wc-mode) 1321 (defun hook--wc-mode-no-keybinds ()
1322 (wc-mode +1)
1323 (define-key wc-mode-map (kbd "C-c C-w w") nil)
1324 (define-key wc-mode-map (kbd "C-c C-w l") nil)
1325 (define-key wc-mode-map (kbd "C-c C-w a") nil)
1326 (define-key wc-mode-map (kbd "C-c C-w c") nil))
1327
1328 (add-hook 'text-mode-hook #'hook--wc-mode-no-keybinds)
1319#+end_src 1329#+end_src
1320 1330
1321* Programming 1331* Programming
@@ -1901,6 +1911,12 @@ Inspo:
1901 (define-key acdw/leader (kbd "C-a") #'org-agenda) 1911 (define-key acdw/leader (kbd "C-a") #'org-agenda)
1902#+end_src 1912#+end_src
1903 1913
1914*** Refile
1915
1916#+begin_src emacs-lisp :noweb-ref settings
1917 (setq org-refile-targets '((org-agenda-files . (:maxlevel . 3))))
1918#+end_src
1919
1904*** Calendar settings 1920*** Calendar settings
1905 1921
1906I'm not sure where else to put these, to be honest. 1922I'm not sure where else to put these, to be honest.