Added .pentadactlyrc.
authorIain Patterson <me@iain.cx>
Fri, 25 Feb 2011 17:01:21 +0000 (17:01 +0000)
committerIain Patterson <me@iain.cx>
Fri, 25 Feb 2011 17:08:26 +0000 (17:08 +0000)
Switched from Vimperator.
Most things are the same but hlsearch is renamed to hlfind and
autocomplete is annoying.

.pentadactylrc [new file with mode: 0644]

diff --git a/.pentadactylrc b/.pentadactylrc
new file mode 100644 (file)
index 0000000..baabd24
--- /dev/null
@@ -0,0 +1,25 @@
+"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: