commit 546cfd18f48b687067da6b69fbf53b976195ed5a
parent ecb811597eb919e0098b0a64ff886cfd24e16da7
Author: Anders Damsgaard <anders.damsgaard@geo.au.dk>
Date: Thu, 3 Oct 2013 19:16:51 +0200
added .vimperatorrc
Diffstat:
2 files changed, 35 insertions(+), 1 deletion(-)
diff --git a/.vimperatorrc b/.vimperatorrc
@@ -0,0 +1,34 @@
+""" VIMPERATOR Firefox plugin configuration
+" see https://github.com/mashiro/dot-files/blob/master/.vimperatorrc
+
+""" What characters to use for labeling hints (f)
+" Numbers only
+"set hintchars=0123456789
+" Home row
+"set hintchars=hjklasdf
+" Smart row
+set hintchars=hjklasdfgyuiopqwertnmzxcvb
+
+""" Default search engine
+" Manage search engines with `:dialog searchengine`
+set defsearch=startpage
+
+""" General options
+set popups=tab
+set nohlsearch
+set ignorecase
+set incsearch
+set smartcase
+set toolbars=noaddons,nobookmarks,nomenu,nonavigation,tabs
+
+""" about:config
+set! general.autoScroll=false
+set! browser.tabs.closeButtons=2
+set! mousewheel.withnokey.numlines=6
+
+""" Scrolling
+nnoremap j 3j
+nnoremap k 3k
+
+
+" vim: ts=2 sw=2 sts=2 fdm=marker ft=vimperator
diff --git a/create_symlinks.sh b/create_symlinks.sh
@@ -1,7 +1,7 @@
#!/bin/sh
# Home folder dotfiles
-for F in .bashrc .vimrc .tmux.conf .xpdfrc .signature .Xdefaults .Xmodmap .xinitrc .xprofile .zshrc .conkyrc .xbindkeysrc .gitconfig; do
+for F in .bashrc .vimrc .tmux.conf .xpdfrc .signature .Xdefaults .Xmodmap .xinitrc .xprofile .zshrc .conkyrc .xbindkeysrc .gitconfig .vimperatorrc; do
SOURCE=$PWD/$F
TARGET=~/$F