blob: 7560f55f070abf2c1dcfbbc0b849332f0135639b (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
|
"1.0
" Load plugins
loadplugins '\.(js|penta)$'
" User defined items
group user
" Links Saraventos
command! -nargs=* -description='Add to Links Saraventos' link -javascript javascript:x=content.document;a=encodeURIComponent(x.location.href);t=encodeURIComponent(x.title);d=encodeURIComponent(x.getSelection());c=encodeURIComponent(args);commands.execute('tabopen https://links.sarava.org/bookmarks?action=add&address='+a+'&title='+t+'&description='+d+'&tags='+c);
" 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
" vim: set ft=pentadactyl:
|