diff --git a/config.org b/config.org index b677b12..e6ae040 100644 --- a/config.org +++ b/config.org @@ -1200,9 +1200,9 @@ I like to reorganize my workspaces, so we can add bindings to change the workspa #+begin_src emacs-lisp (map! :leader :desc "Move workspace left" - "TAB h" #'+workspace/swap-left + "TAB H" #'+workspace/swap-left :desc "Move workspace right" - "TAB l" #'+workspace/swap-right) + "TAB L" #'+workspace/swap-right) #+end_src *** Leader Key @@ -1271,17 +1271,14 @@ If PARENTS is non-nil, the parents of the specified directory will also be creat (map! :leader :desc "Create new project" "p n" #'create-new-project) - #+end_src *** Misc. #+begin_src emacs-lisp (map! :leader - :desc "Undo Tree" - "o u" #'undo-tree-visualize :desc "Open URL" - "s u" #'goto-address-at-point + "s U" #'goto-address-at-point :desc "Nerd Icons" "i i" #'nerd-icons-insert) #+end_src