hotchpotch (owner)

Revisions

gist: 68827 Download_button fork
public
Public Clone URL: git://gist.github.com/68827.git
Embed All Files: show embed
Text only #
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
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
" mappings
noremap <BS> <NOP>
noremap j 5j
noremap J <C-d>
noremap k 5k
noremap K <C-u>
noremap L l
noremap H h
noremap h <C-p>
noremap l <C-n>
noremap f F
noremap F f
noremap <C-c> Y
 
cnoremap <C-c> <ESC>
cnoremap <C-n> <Tab>
cnoremap <C-p> <S-Tab>
cnoremap <C-b> <Left>
cnoremap <C-f> <Right>
 
inoremap <C-v> <C-v><S-Insert>
 
colorscheme myevening
 
" settings
set focuscontent
set verbose=1
set history=5000
set complete=sl
set hintmatching=custom
 
" variables
let g:ex_ime_mode = "inactive"
let g:textarea_ime_mode = "inactive"
 
" plugin_loader.js
let g:plugin_loader_roots = '~/vimperator/coderepos_plugin/';
js <<EOF
liberator.globalVariables.plugin_loader_plugins = <>
    _libly
    auto_reload
    auto_source
    copy
    cpan-search
    forcefocuscontent
    google-search
    hatena-bookmark-search
    hints-yank-paste
    history-search-backward
    ime_controller
    migemo_completion
    migemo_hint
    nextlink
    options-migrate-user-pref
    tinymenu
    walk-input
    xpath_hint
</>.toString().split(/\s+/);
EOF
 
" migrate_user_pref.js
js <<EOF
liberator.globalVariables.options_migrate_user_pref =
[
    {
        pref: 'javascript.enabled',
        description: 'Using JavaScript',
        command: ['javascript', 'js'],
    },
];
EOF
 
" 繝励Λ繧ー繧、繝ウ縺ォ縺励↑縺・〒逶エ謗・譖ク縺上h縺・↑迚ゥ
source! ~/vimperator/vimpChrome.js
 
" vim: set ft=vim: