2008년 5월 11일 일요일

Ubuntu vim 설치 및 설정

원본 : http://hninja.tistory.com/

우분투에 vim설치 하고 syntax 하이라이트를 설정

아래와 같이 합니다.
1. sudo apt-get install vim

2. 자신의 홈 디렉토리에 .vimrc 파일을 생성

set autoindent
set cindent
set smartindent
set nocompatible
set visualbell
set backspace=indent,eol,start
set history=50
set ruler
set showcmd
set incsearch
set tabstop=4
set shiftwidth=4
set number

if has("syntax")
syntax on
endif

colo evening

댓글 없음: