aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--.gitmodules3
-rw-r--r--Makefile4
-rw-r--r--README.markdown2
m---------vim/bundle/vimperator0
-rw-r--r--vimperator/vimperatorrc6
5 files changed, 15 insertions, 0 deletions
diff --git a/.gitmodules b/.gitmodules
index 32a3a574..367b76dd 100644
--- a/.gitmodules
+++ b/.gitmodules
@@ -46,3 +46,6 @@
[submodule "vim/bundle/html5"]
path = vim/bundle/html5
url = git://github.com/othree/html5.vim
+[submodule "vim/bundle/vimperator"]
+ path = vim/bundle/vimperator
+ url = git://github.com/superbrothers/vim-vimperator
diff --git a/Makefile b/Makefile
index 05bfc1c0..f26115e1 100644
--- a/Makefile
+++ b/Makefile
@@ -29,6 +29,7 @@
install-vim-config \
install-vim-pathogen \
install-vim-plugins \
+ install-vimperator \
install-wyrd \
install-x \
test \
@@ -196,6 +197,9 @@ install-vim-pathogen : install-vim-plugins
ln -s -- ../bundle/pathogen/autoload/pathogen.vim \
"$(HOME)"/.vim/autoload/pathogen.vim
+install-vimperator :
+ install -m 0644 -- vimperator/vimperatorrc "$(HOME)"/.vimperatorrc
+
install-wyrd :
install -m 0644 -- wyrd/wyrdrc "$(HOME)"/.wyrdrc
diff --git a/README.markdown b/README.markdown
index a3fab7ea..cfae1549 100644
--- a/README.markdown
+++ b/README.markdown
@@ -45,6 +45,8 @@ Configuration is included for:
* [rxvt-unicode](http://software.schmorp.de/pkg/rxvt-unicode.html) — Fork of
the rxvt terminal emulator with Unicode support
* [Vim](http://www.vim.org/) — Vi IMproved, a text editor
+* [Vimperator](http://www.vimperator.org/vimperator) — Vimperator, a Firefox
+ browser extension allowing Vim-like modes and keybindings
* [Wyrd](http://pessimization.com/software/wyrd/) — a `curses` calendar
frontend for [Remind](http://www.roaringpenguin.com/products/remind)
* [X11](http://www.x.org/wiki/) — Windowing system with network transparency
diff --git a/vim/bundle/vimperator b/vim/bundle/vimperator
new file mode 160000
+Subproject 249689edee67ca87520af9024d1f70dadac9bbe
diff --git a/vimperator/vimperatorrc b/vimperator/vimperatorrc
new file mode 100644
index 00000000..20c4ac0a
--- /dev/null
+++ b/vimperator/vimperatorrc
@@ -0,0 +1,6 @@
+" Use letter hint characters rather than numbers
+set hintchars=hjklasdfgyuiopqwertnmzxcvb
+
+" Make Ctrl-A select all in input fields rather than start-of-line
+inoremap <C-a> <C-Home><C-S-End>
+