As pointed out here, it is pretty simple to find the most recent commit to a particular file in Git:
git log -n 1 -- example/file
As pointed out here, it is pretty simple to find the most recent commit to a particular file in Git:
git log -n 1 -- example/file
" Syntax highlighting on
syntax on
" Allow pasting blocks of code
set paste
" Tabs for spaces
set expandtab
set tabstop=4
" Mode dependent cursor
let &t_ti.="\e[1 q"
let &t_SI.="\e[5 q"
let &t_EI.="\e[1 q"
let &t_te.="\e[0 q"