diff options
author | oreodave <aryadevchavali1@gmail.com> | 2019-07-29 16:14:58 +0100 |
---|---|---|
committer | oreodave <aryadevchavali1@gmail.com> | 2019-07-29 16:14:58 +0100 |
commit | 674db93b406ddd6725c3bce4493df3eaabd99027 (patch) | |
tree | 623e92d6b77cb1be3d92a516744f90099f21dc42 /doom.d | |
parent | 6e8c90663655f7fcc7dabd22663916c245e13a40 (diff) | |
download | dotfiles-674db93b406ddd6725c3bce4493df3eaabd99027.tar.gz dotfiles-674db93b406ddd6725c3bce4493df3eaabd99027.tar.bz2 dotfiles-674db93b406ddd6725c3bce4493df3eaabd99027.zip |
~Projectile tags command
Put the excludes into the command, projectile-tags-exclude-patterns
doesn't seem to work
Diffstat (limited to 'doom.d')
-rw-r--r-- | doom.d/config.org | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/doom.d/config.org b/doom.d/config.org index e10625f..97a872a 100644 --- a/doom.d/config.org +++ b/doom.d/config.org @@ -19,8 +19,7 @@ overall coding in emacs. * Global variables #+BEGIN_SRC emacs-lisp (setq doom-localleader-key ",") -(setq projectile-tags-exclude-patterns '("Makefile", "package.json", "node_modules/**")) -(setq projectile-tags-command "ctags-exuberant -R -e .") +(setq projectile-tags-command "ctags-exuberant -R -e . --exclude=Makefile --exclude=node_modules --exclude=bin --exclude=obj --exclude=dist") #+END_SRC - '<SPC>m' is right next to ',', so may as well use one tap instead of two - Projectile tags commands |