.vim の管理を Vundle にしてみた

教えてもらったプラグインを追加するついでに、pathogen から Vundle に変えてみました。

サイトのQuick start に書いてあるようにすればおけ。
git clone した後、.vimrc を、

set nocompatible
filetype off

set rtp+=~/.vim/bundle/vundle/
call vundle#rc()

Bundle 'qmarik/vundle'
" -------------------------------------------------------------------------
" Vundle Plugins
" -------------------------------------------------------------------------
Bundle 'Shougo/neocomplcache'

" Unite
Bundle 'Shougo/unite.vim'
Bundle 'h1mesuke/unite-outline'
Bundle 'thinca/vim-unite-history'

Bundle 'surround.vim'
Bundle 'mattn/zencoding-vim'
Bundle 'digitaltoad/vim-jade.git'
Bundle 'vim-stylus'

Bundle 'nathanaelkane/vim-indent-guides.git'

" -------------------------------------------------------------------------
" -------------------------------------------------------------------------
filetype plugin indent on

とかやって、 :source .vimrcして、
:BundleInstall
ってやれば、プラグインを勝手にダウンロードしてくれる。便利〜。git submodule しなくていいのは楽ちんです。

参考にしたサイト

PC環境のお手入れ

デスクトップ(2011-1022)

ubuntu をアップグレードしてた後にはまった、ウィンドウの移動トラブルをきっかけに、ちょっとだけデスクトップと、エディタのお手入れをしました!日々少しずつだけど確実に集中力をそぐ作業の改善、といいますか。今あるていどやってしまおう〜ってことで、1日かけて設定をごにょごにょ。

画像のスクリーンショットは、普段コードを書くときのウィンドウのレイアウトです。1920×1200+1920×1200 の2モニタで、左から端末、エディタ、ブラウザ1(制作中の画面)、ブラウザ2(資料、メール、hootsuiteなど)。OSは懲りずに ubuntu。ちょうど目線の先がエディタな感じです。

で、今回やったこと。

  • gnome-pie を入れてみた
  • ウィンドウのリサイズをキーボードでできるようにする。(winctrl で、縦100%、横50%)
  • ウインドウの移動をキーボードでできるようにする(compiz の put プラグインで、左寄せ・右寄せ、ディスプレイの移動)
  • vim のプラグイン管理を pathogen から vundle に変えた+プラグインの追加。(教えてもらったインデントに色をつけるやつと、jade,stylus のsyntaxを追加)

(細かいことは、別エントリで書く予定。)

で、結果。

ランチャは、unity でもいいんだけど、視線移動がでかいので、 gnome-pie も併用。gnome-pie はマウスの位置にぴょこっとでてくるから、視線移動が少ない。どちらかというと試用期間で、しばらくしたらどうするか考えよう。

ウィンドウの移動とリサイズで、多用するものはショートカットに割り当てておくとものすごく楽(Mac でも同じようなことやってた気がする)。イライラしなくてすむ。

vim の Vundle 便利だわ。プラグイン入れるのに、 git submodule とかしなくていいのはらくちん。手動で入れたのはカラースキームだけ!(Vundle 経由で入れられれるかどうかは未調査)。 

完璧ではないけれど、前より進化です。ツールのお手入れって大事ですね。(たまに再インストールで、バックアップ忘れて飛ぶけどw)

I’ve got trouble which causes very slow moving windows when I upgraded ubuntu, but solved it, and I used this opportunity to maintain ubuntu environment.

  • installed “gnome-pie”
  • added a keyboard shortcut to resize the window to half of the screen.
  • added keyboard shortcuts for moving windows to left edge, right edge, and move to the other screen.
  • changed plug-in manager for vim from path-o-gen to vundle, and added some new plugins like indent-guide, vim-stylus, vim-jade.

I like unity but I’m trying gnome-pie. I don’t like long move of viewpoint, but gnome-pie show the launcher just on the mouse cursor, lovely!

Window move and resize shortcuts reduce time to tidying up windows. I used to use mac and used apple script and quicksilver to move and resize windows, I found how do same thing on ubuntu that uses compiz “PUT” plug-in and winctrl.

vundle is awesome, it can download plug-ins from vim. I don’t have to organize git repos for plug-ins.

I should maintain my pc environment sometime for reduce irritations to get move productive. (but I sometimes lost these settings upgrade os without backups ;-)