blob: e20df95bd6a7a4b6957637f8467adc3da9dac0f1 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
|
"1.0
" Load plugins
loadplugins '\.(js|penta)$'
" User defined items
group user
" Set title and default search
set defsearch=duck
set titlestring=Firefox
" Show tab numbers
" See https://code.google.com/p/dactyl/issues/detail?id=870
set go+=n
" Avoid theme overwriting during syncs
"set! general.skins.selectedSkin=rein
" Copy page title
" Thanks to https://github.com/laurentb/public-dotfiles/blob/master/desktop/.pentadactyl/main.penta
command yt :yank :echo document.title.replace(/ - Firefox$/, '');
" Open a new tab or the homepage
map e :tabopen about:newtab <CR>
map h gH
" vim: set ft=pentadactyl:
|