Last active
April 15, 2016 00:17
-
-
Save jacquelinekay/93f253ce0a45c592b43f3ff6ec867e2c to your computer and use it in GitHub Desktop.
vimrc
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
:colorscheme koehler | |
:set tabstop=2 | |
:set shiftwidth=2 | |
:set expandtab | |
autocmd BufRead,BufNewFile *.launch setfiletype roslaunch | |
:autocmd Syntax * syn match ExtraWhitespace /\s\+$\| \+\ze\t/ | |
:highlight ExtraWhitespace ctermbg=darkgreen guibg=lightgreen | |
" syntax highlighting direct mappings for gazebo and ros development | |
au BufNewFile,BufRead *.sdf setfiletype xml | |
au BufNewFile,BufRead *.erb setfiletype xml | |
au BufNewFile,BufRead *.rsdf setfiletype xml | |
au BufNewFile,BufRead *.urdf setfiletype xml | |
au BufNewFile,BufRead *.world setfiletype xml | |
au BufNewFile,BufRead *.template setfiletype cpp |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment