dotfiles

configuration files for shell, text editor, graphical environment, etc.
git clone git://src.adamsgaard.dk/dotfiles
Log | Files | Refs | README | LICENSE Back to index

commit 3ced0a151d2bce085c2c49f058e66ee2de7ae669
parent 1cc4d20f5fe63ec2aeb3ee795bb22abcf1a16508
Author: Anders Damsgaard <anders.damsgaard@geo.au.dk>
Date:   Mon, 31 Mar 2014 12:32:47 +0200

Added shortcut to run ctags

Diffstat:
M.vimrc | 6++++++
1 file changed, 6 insertions(+), 0 deletions(-)

diff --git a/.vimrc b/.vimrc @@ -61,6 +61,9 @@ Bundle 'ervandew/supertab' "let g:calendar_google_calendar = 1 "let g:calendar_google_task = 1 +" ctags list (:TlistOpen) +Bundle 'taglist.vim' + filetype plugin indent on filetype plugin on @@ -196,3 +199,6 @@ imap <Left> <Nop> imap <Right> <Nop> imap <Up> <Nop> imap <Down> <Nop> + +" Update ctags +nmap <leader>t :!ctags -R --verbose --langmap=c++:.cu,c++:.cuh .<CR>