diff options
author | Tom Ryder <tom@sanctum.geek.nz> | 2015-08-28 16:59:07 +1200 |
---|---|---|
committer | Tom Ryder <tom@sanctum.geek.nz> | 2015-08-28 16:59:07 +1200 |
commit | 5f9ff305b2429dcaf64a8631f7f7be8f7e6669c4 (patch) | |
tree | ef88b604ddd24af4326cbad3818dc3b2f05cec68 | |
parent | Disable mouse in ncmpcpp (diff) | |
download | dotfiles-5f9ff305b2429dcaf64a8631f7f7be8f7e6669c4.tar.gz dotfiles-5f9ff305b2429dcaf64a8631f7f7be8f7e6669c4.zip |
Switch to Palemoon, junk Vimperator
-rw-r--r-- | Makefile | 4 | ||||
-rw-r--r-- | README.markdown | 2 | ||||
-rw-r--r-- | X/xbindkeysrc | 2 | ||||
-rw-r--r-- | sh/profile.d/browser.sh | 2 | ||||
-rw-r--r-- | vimperator/vimperatorrc | 6 |
5 files changed, 2 insertions, 14 deletions
@@ -32,7 +32,6 @@ install-vim-config \ install-vim-pathogen \ install-vim-plugins \ - install-vimperator \ install-wyrd \ install-x \ test \ @@ -206,9 +205,6 @@ 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 e75ce831..4ef7a1b7 100644 --- a/README.markdown +++ b/README.markdown @@ -45,8 +45,6 @@ Configuration is included for: * [Subversion](https://subversion.apache.org/) — Apache Subversion, a version control system * [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/X/xbindkeysrc b/X/xbindkeysrc index 5e5a99ba..a8757531 100644 --- a/X/xbindkeysrc +++ b/X/xbindkeysrc @@ -1,7 +1,7 @@ "exec urxvtcd" Mod4 + Return -"exec firefox" +"exec palemoon" Mod4 + b "exec dmenu_run -fn 'terminus-iso8860-1-12' -nb '#111111' -nf '#eeeeee' -sb '#285577' -sf '#ffffff'" diff --git a/sh/profile.d/browser.sh b/sh/profile.d/browser.sh index 9d5919eb..c318b133 100644 --- a/sh/profile.d/browser.sh +++ b/sh/profile.d/browser.sh @@ -1,6 +1,6 @@ # Browser if [ -n "$DISPLAY" ] ; then - BROWSER=firefox + BROWSER=palemoon else BROWSER=lynx fi diff --git a/vimperator/vimperatorrc b/vimperator/vimperatorrc deleted file mode 100644 index 20c4ac0a..00000000 --- a/vimperator/vimperatorrc +++ /dev/null @@ -1,6 +0,0 @@ -" 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> - |