Skip to content

Instantly share code, notes, and snippets.

@rderik
Created February 14, 2018 20:51
Show Gist options
  • Save rderik/517afbff2a1dc87f7837507827710350 to your computer and use it in GitHub Desktop.
Save rderik/517afbff2a1dc87f7837507827710350 to your computer and use it in GitHub Desktop.
ctags cofiguration
# Generate CTags of current directory
ctags -R .
# this will generate a file tags
# add it to the git ignore
echo "tags" >> ~/.gitignore_global
# configure your vimrc to search current dir, then add other tags you wish to read
set tags=./tags,$HOME/other_project/tags,$DEVPATH/project2/tags
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment