2008-08-05から1日間の記事一覧

.bashrcファイルの作成

$ touch ~/.bashrcalias vi=vim alias view='vim -R' export EDITOR=vim export SVN_EDITOR=vim

.profileファイルの編集

$ vi ~/.profileexport LANG=ja_JP.UTF-8 export PATH=/opt/local/bin:/opt/local/sbin/:$PATH export DISPLAY=:0.0 export CHARSET=UTF-8 export PS1="\w \! \$ "

.vimrcファイルの作成

vim

$ touch ~/.vimrcif v:progname =~? "evim" finish endif set nocompatible set backspace=indent,eol,start if has("vms") set nobackup else set backup endif set history=50 set ruler set showcmd set incsearch map Q gq if &t_Co > 2 || has("gui_run…