diff options
author | Johannes Löthberg <johannes@kyriasis.com> | 2016-01-14 16:46:21 +0000 |
---|---|---|
committer | Johannes Löthberg <johannes@kyriasis.com> | 2016-01-14 16:46:21 +0000 |
commit | 7666a9cc93c079cd3a61ea8a7d4cf3103a74c56e (patch) | |
tree | e1e1b32e1666bead6a6ac7327bd2e253e989e80e /pentadactyl/pentadactylrc | |
parent | cee153e1d03f215139ba6d74a8cd8fe039213992 (diff) | |
parent | 81873932548d4dda5345c19c3a635d53e25da061 (diff) | |
download | dotfiles-7666a9cc93c079cd3a61ea8a7d4cf3103a74c56e.tar.xz |
Merge remote-tracking branch 'k-kyrias/master' into theos
Diffstat (limited to 'pentadactyl/pentadactylrc')
-rw-r--r-- | pentadactyl/pentadactylrc | 66 |
1 files changed, 0 insertions, 66 deletions
diff --git a/pentadactyl/pentadactylrc b/pentadactyl/pentadactylrc deleted file mode 100644 index e2bad71..0000000 --- a/pentadactyl/pentadactylrc +++ /dev/null @@ -1,66 +0,0 @@ -" ~/.pentadactylrc - -set runtimepath=~/.config/pentadactyl - -loadplugins '\.(js|penta)$' -group user -highlight FontFixed font-family: monospace !important; font: 12px "Source Code Pro" !important; -map -modes=n -silent C -javascript commands.execute('!(mpv "' - \ + content.location.href.replace(/([$`"\\])/g, "\\$1") - \ + '") &'); -set defsearch=duckduckgoog - - -" ui -source ~/.config/pentadactyl/chrome.css -set guioptions=Csn -set hlfind - -" Speed up scrolling -nmap -b h 5h -nmap -b j 5j -nmap -b k 5k -nmap -b l 5l - -" Tab control -nmap <A-h> -e :tabprev -nmap <A-l> -e :tabnext -nmap <A-S-h> -e :tabmove -1 -nmap <A-S-l> -e :tabmove +1 - -" Toggle bookmark toolbar -nmap <A-b> -e :toolbartoggle Bookmarks Toolbar - -" Easily show downloads -nmap <S-d> -e :downloads - -" Stop <C-j> and <C-k> doing whatever it does -nmap <C-j> <nop> -nmap <C-k> <nop> - -nmap <A> <nop> - -" Open the current URL as an argument to yt-dl -nmap <S-u> -e :launchv - -" Same above but with quvi -nmap <S-q> -e :launchvq - -" Use vim instead of gvim for now -set editor='termite -e "vim +<line> <file>"' - -" Hide the status bar when using fullscreen -au fullscreen on set go-=s -au fullscreen off set go+=s - -" Change some default about:configs -set! noscript.keys.tempAllowPage="alt z" -set! noscript.keys.revokeTemp="alt c" -"set! noscript.notify=false -set! plugins.click_to_play=true -set! plugin.default.state=1 - -" Require websites preform safe ssl negotiation -set! security.ssl.treat_unsafe_negotiation_as_broken=true - -" vim: ft=pentadactyl |