月曜日, 5月 03, 2010
投稿者
DeepPurple@深紫
ラベル:
Linux
,
UNIX
,
vim
,
エディタ
散々情報は載っているが、誰かの役に立てばいいと思い、コメント付きで設定。
プラグインはTwitter.jsのみ。
" +----------------------------------------------------------------
" .vimperatorrc
" created by 深紫@DeepPurple 09 Apr 2010
" +----------------------------------------------------------------
" vim: set ft=vimperator:
" +----------------------------------------------------------------
" Basic settings
" +----------------------------------------------------------------
" changing browser title
" ブラウザタイトル
set titlestring=Firefox
" GUI settings
" メニューバーとツールバーの表示
set guioptions=mT
" search keyworkds force to be strong view at all pages
" 検索キーワードをハイライト
set hlsearch
" search ignore case
" 大文字小文字を無視
set ic
" using not beep, visual bell
" ビープ音を消す
set visualbell
" not use text content
" 自動でテキストエリアにフォーカスしない
set focuscontent
" inactivete visual lebel
set visualbellstyle=display:none;
" complementation settings
set wildoptions=auto
" completion settings
" 補完対象設定
set complete=bsfhl
" +----------------------------------------------------------------
" Key map settings
" +----------------------------------------------------------------
" jとkの移動量
noremap j 5j
noremap k 5k
" forward / backward
" ブラウザの進む/戻る
map h
map l
" tab move
" タブ移動
map H gT
map L gt
map D
" +----------------------------------------------------------------
" Plugins
" +----------------------------------------------------------------
" +-----twitter.js-------------------------------------------
" tweet something
" 何かつぶやく
nnoremap ,t :twitter
" view time line
" タイムラインを見る
nnoremap ,T :twitter!
" view someone's reply
nnoremap ,@ :twitter!@
" tweet search
nnoremap .s :twitter!?
" +----------------------------------------------------------------
" Other scripts
" +----------------------------------------------------------------