]> git.armaanb.net Git - config.org.git/blobdiff - config.org
Remove which-key
[config.org.git] / config.org
index deb9c1700823bc0ae0e5fe87a285a04314b452f6..2775c75034fa908c859b68efacfd55957c96c6cb 100644 (file)
@@ -120,13 +120,6 @@ Show a ruler at a certain number of chars depending on mode.
   (setq display-fill-column-indicator-column 80)
   (global-display-fill-column-indicator-mode)
 #+end_src
-** Keybinding hints
-When starting a key chord, show possible future steps after 0.3 seconds.
-#+begin_src emacs-lisp
-  (use-package which-key
-    :config (which-key-mode)
-    :custom (which-key-idle-delay 0.3))
-#+end_src
 ** Highlight todo items in comments
 #+begin_src emacs-lisp
   (use-package hl-todo
@@ -143,6 +136,7 @@ Soft wrap words and do operations by visual lines except in programming modes.
   (global-visual-line-mode 1)
   (dolist (hook '(prog-mode-hook
                   calc-trail-mode-hook
+                  org-agenda-mode-hook
                   mu4e-headers-mode-hook))
     (add-hook hook (lambda () (visual-line-mode -1))))
 #+end_src
@@ -497,7 +491,7 @@ Still experimenting with this setup. Not sure if I will keep it, but it works we
   (defun sync-calendar ()
     "Sync calendars with vdirsyncer"
     (interactive)
-    (shell-command "vdirsyncer -vcritical sync"))
+    (async-shell-command "vdirsyncer sync"))
 
   (use-package calfw
     :bind (:map cfw:calendar-mode-map ("C-S-u" . sync-calendar)))