diff options
Diffstat (limited to 'emacs/.emacs.d/main.el')
-rw-r--r-- | emacs/.emacs.d/main.el | 9 |
1 files changed, 5 insertions, 4 deletions
diff --git a/emacs/.emacs.d/main.el b/emacs/.emacs.d/main.el index 0f1b353e..56a62755 100644 --- a/emacs/.emacs.d/main.el +++ b/emacs/.emacs.d/main.el @@ -1113,10 +1113,10 @@ ;; #+BEGIN_SRC emacs-lisp (use-package windmove - :bind (("S-<left>" . windmove-left) - ("S-<right>" . windmove-right) - ("S-<up>" . windmove-up) - ("S-<down>" . windmove-down))) + :bind* (("S-<left>" . windmove-left) + ("S-<right>" . windmove-right) + ("S-<up>" . windmove-up) + ("S-<down>" . windmove-down))) ;; #+END_SRC ;; ** Blogging @@ -1849,6 +1849,7 @@ With prefix TO-CURRENT-BUFFER, insert command output into buffer." :defer 8 :defines (org-table-duration-custom-format) :init (setq org-replace-disputed-keys t + org-support-shift-select 'always org-ellipsis "…") :config (progn (setq org-directory "~/Sync/org" |