diff options
author | oreodave <aryadevchavali1@gmail.com> | 2019-09-26 09:08:45 +0100 |
---|---|---|
committer | oreodave <aryadevchavali1@gmail.com> | 2019-09-26 09:08:45 +0100 |
commit | d69ab52ccaed9b44f41077736bbc3c20533403a2 (patch) | |
tree | 3e64b4a83b62cf32272bc801c98b0f701d865642 /doom.d/config.org | |
parent | 78c485af032449eba8844cb0683fb0a8b4eaee0d (diff) | |
download | dotfiles-d69ab52ccaed9b44f41077736bbc3c20533403a2.tar.gz dotfiles-d69ab52ccaed9b44f41077736bbc3c20533403a2.tar.bz2 dotfiles-d69ab52ccaed9b44f41077736bbc3c20533403a2.zip |
~construct-tags to return string, added brackets around org bindings
Diffstat (limited to 'doom.d/config.org')
-rw-r--r-- | doom.d/config.org | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/doom.d/config.org b/doom.d/config.org index d0b9a33..0d0adfb 100644 --- a/doom.d/config.org +++ b/doom.d/config.org @@ -82,12 +82,13 @@ become my C one soon! (after! projectile (setq oreodave-tags-alist '("Makefile" "node_modules" "bin" "dist" "obj" "'*.json'")) (defun oreodave/config/construct-tags () - (setq projectile-tags-command (reduce (lambda (x y) (concat x y)) (mapcar (lambda (i) (concat " --exclude=" i)) oreodave-tags-alist) - :initial-value "exctags -Re ")) + (reduce (lambda (x y) (concat x y)) (mapcar (lambda (i) (concat " --exclude=" i)) oreodave-tags-alist) + :initial-value "exctags -Re ") ) (setq projectile-tags-command (oreodave/config/construct-tags)) ) #+END_SRC + Really simple, just want to set projectile-tags-command when projectile has loaded *** Wakatime #+BEGIN_SRC emacs-lisp @@ -357,9 +358,8 @@ My docsets are stored in .docsets for ease of use (after! org (map! ; Org keybinds :map org-mode-map - :localleader - :desc "Org dispatch" "ee" 'org-export-dispatch - ) + (:localleader + :desc "Org dispatch" "ee" 'org-export-dispatch) ) #+END_SRC I like using the org dispatch facilities more than the default export keybinds |