2011-10-01から1ヶ月間の記事一覧

.zshrc

export LANG=ja_JP.UTF-8 HISTFILE=$HOME/.zsh-history HISTSIZE=100000 SAVEHIST=100000 ## 補完機能の強化 autoload -U compinit compinit ## プロンプトの設定 autoload colors colors case ${UID} in 0) PROMPT="[%{${fg[white]}%}%n@%m%{${reset_color}…

.gvimrc

"--------------------------------------------------------------------------- " GUIに関する設定 " if has('gui_macvim') set transparency=3 " IMを無効化 set imdisable " コマンドラインの行数 set cmdheight=2 " ツールバー非表示 set guioptions-=T…

.vimrc

"--------------------------------------------------------------------------- " 編集に関する設定: " " タブの画面上での幅 set tabstop=4 " タブをスペースに展開 set expandtab " オートインデント set cindent " オートインデントの深さ set shiftwid…