Skip to content

Commit

Permalink
Update mktags, vim plugins
Browse files Browse the repository at this point in the history
  • Loading branch information
overthink committed Jan 18, 2018
1 parent ddd4376 commit d5e3525
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 2 deletions.
2 changes: 1 addition & 1 deletion home/.vimrc
Original file line number Diff line number Diff line change
Expand Up @@ -15,9 +15,9 @@ Plugin 'tpope/vim-leiningen'
Plugin 'tpope/vim-fireplace'
Plugin 'overthink/vim-classpath'
Plugin 'guns/vim-clojure-static'
Plugin 'typedclojure/vim-typedclojure'
Plugin 'Lokaltog/vim-powerline'
Plugin 'tpope/vim-fugitive'
Plugin 'tpope/vim-rhubarb'
Plugin 'tomasr/molokai'
Plugin 'krisajenkins/vim-pipe'
Plugin 'rust-lang/rust.vim'
Expand Down
10 changes: 9 additions & 1 deletion home/bin/mktags
Original file line number Diff line number Diff line change
@@ -1,4 +1,12 @@
#!/bin/bash
# Make tags file recursively from current directory.
ctags -R --exclude='*.js' --exclude='.build' --fields=+iaS --extra=+q .
ctags \
-R \
--exclude='*.js' \
--exclude='node_modules' \
--exclude='venv' \
--exclude='.build' \
--fields=+iaS \
--extra=+q \
.

0 comments on commit d5e3525

Please sign in to comment.