neovim: only add files in git to tags file

This commit is contained in:
teutat3s 2021-06-21 10:02:07 +02:00
parent 7faf8310bb
commit ce618a532d
Signed by: teutat3s
GPG key ID: 18DAE600A6BBE705

View file

@ -2,6 +2,8 @@
au! BufNewFile,BufReadPost *.{yaml,yml} set filetype=yaml
autocmd FileType yaml setlocal ts=2 sts=2 sw=2 expandtab
let g:gutentags_file_list_command = 'git ls-files'
" Golang
" Go test shortcut
nmap <Leader>got :GoTest<CR>