-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.pentadactylrc
49 lines (39 loc) · 1.4 KB
/
.pentadactylrc
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
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
" Molokai style theme {{{
"StatusLine settings
"CmdLine settings excluding Gradient
"hi CmdLine padding: 1px !important; font: normal 14px 'PragmataPro',' Grande' !important;
"hi CmdOutput font: normal 14px 'PragmataPro',' Grande' !important;
"hi CompItem font: normal 14px 'PragmataPro',' Grande' !important;
"hi CompResult font-size: 14px; font-family: 'PragmataPro',' Grande';
hi CmdLine font-family: 'PragmataPro',' Grande' !important;
hi CmdOutput font-family: 'PragmataPro',' Grande' !important;
hi CompItem font-family: 'PragmataPro',' Grande' !important;
hi CompResult font-family: 'PragmataPro',' Grande' !important;
" }}}
source ~/.pentadactyl/solarized-light.penta
set runtimepath=~/.pentadactyl
set editor='/usr/local/bin/mvim -f +<line> <file>'
set followhints=1
set showtabline=always
set showstatuslinks=command
set guioptions-=r
set titlestring=Firefox
map , <Leader>
nmap -builtin j 5j
nmap -builtin k 5k
nmap é gT
nmap è gt
" Search {{{
set hlfind
nmap -builtin <Leader><space> <esc>:noh<CR>
" }}}
" Dev tools {{{
nmap -builtin <Leader>d <S-F2>
" source ~/.pentadactyl/firebug.js
" nnoremap <leader>c :firebug console-run<CR>
" nnoremap <leader>f :firebug open<CR>
" }}}
" Reader mode {{{
map gr -js let r = document.getElementById('reader-mode-button'); if (!r.hidden) r.click()
" }}}
" vim: set ft=pentadactyl: