diff options
-rw-r--r-- | doom.d/config.org | 13 |
1 files changed, 7 insertions, 6 deletions
diff --git a/doom.d/config.org b/doom.d/config.org index a19b53b..f6c55c7 100644 --- a/doom.d/config.org +++ b/doom.d/config.org @@ -28,7 +28,7 @@ overall coding in emacs. * Theming #+BEGIN_SRC emacs-lisp (load-theme 'doom-molokai t) - #+END_SRC +#+END_SRC I like monokai :) * General keymap @@ -46,11 +46,12 @@ I like monokai :) them to - <SPC>pf => project -> find file #+BEGIN_SRC emacs-lisp - (:prefix "/" ; Search - :desc "Ag!" "a" '+ivy/ag - :desc "FZF!" "f" 'counsel-fzf - :desc "Search buffer" "/" 'swiper - ) +(:prefix "/" ; Search + :desc "Ag!" "a" '+ivy/ag + :desc "FZF!" "f" 'counsel-fzf + :desc "Search Tags" "t" 'counsel-etags-list-tag + :desc "Search buffer" "/" 'swiper + ) #+END_SRC - I like using <SPC>/ in comparison to <SPC>s: it's closer together (thus quicker, I do searches a lot so this is noticeable) and makes more sense |