Brought .vimperratorrc.local into version control.
authorIain Patterson <me@iain.cx>
Mon, 31 May 2010 21:24:22 +0000 (22:24 +0100)
committerIain Patterson <me@iain.cx>
Mon, 31 May 2010 21:29:04 +0000 (22:29 +0100)
.vimperatorrc.local [new file with mode: 0644]

diff --git a/.vimperatorrc.local b/.vimperatorrc.local
new file mode 100644 (file)
index 0000000..f8635c8
--- /dev/null
@@ -0,0 +1,14 @@
+" Show scrollbars and address bar.
+set guioptions=bmr
+" On Mac there is no menu bar.  The icons are in the toolbar.
+execute "set guioptions+=" + ((/Mac OS X/.test(navigator.userAgent)) ? "T" :"")
+
+" Highlight search results.
+set hlsearch
+
+" Use d/u without Control for up and down.
+noremap d <C-d>
+noremap u <C-u>
+
+" Show jumplist.
+noremap J :jumps<CR>