| 123456789101112131415161718192021222324252627282930313233 |
- """"""""""""""""""""""""
- " Options
- """"""""""""""""""""""""
- " pentadactyl gui options
- set guioptions=rbCBns
- " In order: right/bottom scrollbars, Cmdline outside status, Bookmark bar,
- " Tab number, Statusbar
- " set another default search engine. Need to install a search engine through
- " firefox first
- " http://superuser.com/questions/358935/pentadactyl-with-duckduckgo-as-default-search-engine
- " set defsearch=duckduckgo-ssl
- """"""""""""""""""""""""
- " Mappings
- """"""""""""""""""""""""
- map , <leader>
- " faster j/k scrolling
- map j 5<C-e>
- map k 5<C-y>
- map J <C-d>
- map K <C-u>
- " easier switching of tabs (instead of cmd+shift '[' and ']' )
- map l gt
- map h gT
- " reload pentadactylrc
- map <C-r> :source ~/.pentadactylrc<CR>:echo "Configuration Reloaded (~/.pentadactylrc)"<CR>
|