Switched from Vimperator.
Most things are the same but hlsearch is renamed to hlfind and
autocomplete is annoying.
--- /dev/null
+"1.0b5.1 (created: 2011/02/15 20:42:05)
+
+loadplugins '\.(js|penta)$'
+
+" Show scrollbars, address bar and tab numbers.
+set guioptions=bcmrN
+" On Mac there is no menu bar. The icons are in the toolbar.
+:if (/Mac OS X/.test(navigator.userAgent))
+ set guioptions+=T
+:endif
+
+" Highlight search results.
+set hlfind
+
+" Autocomplete can be distracting. Require manual tab completion.
+se autocomplete=
+
+" Use d/u without Control for up and down.
+noremap d <C-d>
+noremap u <C-u>
+
+" Show jumplist.
+noremap J :jumps<CR>
+
+" vim: set ft=pentadactyl: