X-Git-Url: http://git.draconx.ca/gitweb/vimconf.git/blobdiff_plain/a85463dfe03fc51999efb5ac95a9611d432d94cd..7d56dde690975cda4c5704a13472a010bd5ae315:/plugin/keymap.vim diff --git a/plugin/keymap.vim b/plugin/keymap.vim new file mode 100644 index 0000000..f53735f --- /dev/null +++ b/plugin/keymap.vim @@ -0,0 +1,22 @@ +" Copyright © 2012 Nick Bowler +" +" Set langmap based on the KEYMAP environment variable. This allows key +" bindings to work properly regardless of the keyboard layout. +" +" License WTFPL2: Do What The Fuck You Want To Public License, version 2. +" This is free software: you are free to do what the fuck you want to. +" There is NO WARRANTY, to the extent permitted by law. + +if $KEYMAP == "colemak" + set langmap=sd,fe,tf,dg,ui,nj,ek,il,kn,yo,\\;p,pr,rs,gt,lu,jy,SD,FE,TF,DG,UI,NJ,EK,IL,KN,YO,:P,PR,RS,GT,LU,JY,o\\;,O: +endif + +" Disable Gentoo's default cursor position handling, because it is broken wrt. +" langmap. +let g:leave_my_cursor_position_alone=1 + +" Jump to last cursor position when editing a file. +autocmd BufReadPost * + \ if line("'\"") > 0 && line("'\"") <= line("$") | + \ execute "goto" line2byte(line("'\"")) | + \ endif