Skip to content

Instantly share code, notes, and snippets.

View ivanfrias's full-sized avatar

Ivan ivanfrias

View GitHub Profile
@ivanfrias
ivanfrias / ctags.setup
Created March 24, 2022 17:41 — forked from nazgob/ctags.setup
ctags setup on mac
# you have ctags but it does not work...
$ ctags -R --exclude=.git --exclude=log *
ctags: illegal option -- R
usage: ctags [-BFadtuwvx] [-f tagsfile] file ...
#you need to get new ctags, i recommend homebrew but anything will work
$ brew install ctags
#alias ctags if you used homebrew
$ alias ctags="`brew --prefix`/bin/ctags"