this repo has no description
1
fork

Configure Feed

Select the types of activity you want to include in your feed.

Use .tags as ctags output file

+4 -1
+2 -1
nvim/init.vim
··· 133 133 nmap wc <Plug>(choosewin) 134 134 135 135 " Ctrl-F12 to generate ctags for current project 136 - noremap <silent> <F12> :!ctags -f .tags -R .<CR> 136 + noremap <silent> <F12> :!ctags -R .<CR> 137 + set tags=.tags 137 138 138 139 " Yanks 139 140 noremap <Leader>p "+p
+2
utils/ctags
··· 1 + -f .tags 2 + 1 3 --sort=yes 2 4 --recurse=yes 3 5 --append=yes