Skip to content

Instantly share code, notes, and snippets.

@yukpiz
Created July 4, 2016 08:32
Show Gist options
  • Save yukpiz/bef57de0d709321f202bdfe7d785c07f to your computer and use it in GitHub Desktop.
Save yukpiz/bef57de0d709321f202bdfe7d785c07f to your computer and use it in GitHub Desktop.

Vimでctagsを使う便利な設定

plug-in

dein#add('soramugi/auto-ctags.vim')

"auto-ctags.vim configuration.
let g:auto_ctags = 1 "When you save the file, and then run automatically.
let g:auto_ctags_directory_list = ['.git', '.svn'] "Stored in a directory that matches the first.
let g:auto_ctags_tags_name = 'tags' "Create the tags name.
let g:auto_ctags_tags_args = '--sort=yes' "The arguments of ctags.
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment