vi 에디터는 리눅스에서 가장 강력한 에디터로 사랑 기본 메모장 같은 역할을 합니다.
하지만 강력한편이죠.
간결성으로…
전체 설정
vi .vimrc
각 계정 설정
vi ~/.vimrc
—-제가 한 설정의 경우
set autoindent
set cindent
set smartindent
set ruler
set tabstop=4
set shiftwidth=4
set title
set history=1000
set nocompatible
set hlsearch
set ignorecase
set number
set showmatch
set nowrap
set wmnu
set background=dark
set fileencoding=euc-kr
set encoding=euc-kr
set fencs=utf-8,cp949,cp932
if has("syntax")
syntax on "Default on no syntax highlightning
endif
filetype on
—- 가져온 설정
set number " line 표시를 해줍니다.
set ai " auto index
set si " smart index
set cindent " c style index
set shiftwidth=4 " shift를 4칸으로 ( >, >>, <, << 등의 명령어)
set tabstop=4 " tab을 4칸으로
set ignorecase " 검색시 대소문자 구별하지않음
set hlsearch " 검색시 하이라이트(색상 강조)
set expandtab " tab 대신 띄어쓰기로
set background=dark " 검정배경을 사용할 때, (이 색상에 맞춰 문법 하이라이트 색상이 달라집니다.)
set nocompatible " 방향키로 이동가능
set fileencodings=utf-8,euc-kr " 파일인코딩 형식 지정
set bs=indent,eol,start " backspace 키 사용 가능
set history=1000 " 명령어에 대한 히스토리를 1000개까지
set ruler " 상태표시줄에 커서의 위치 표시
set nobackup " 백업파일을 만들지 않음
set title " 제목을 표시
set showmatch " 매칭되는 괄호를 보여줌
set nowrap " 자동 줄바꿈 하지 않음
set wmnu " tab 자동완성시 가능한 목록을 보여줌
syntax on " 문법 하이라이트 킴"
반응형
'리눅스 > 우분투 설정 관련' 카테고리의 다른 글
Oh My zsh 설치기 - 우분투 14.04 (0) | 2015.10.22 |
---|---|
Vim Editor에 Plugin을 추가해보자. (0) | 2015.07.28 |
우분투 설치 후 다운로드 서버 변경(ftp.daum.net) (0) | 2014.10.02 |
우분투 설치 후 한글 설정 (14-04버전기준) (0) | 2014.10.02 |
우분투 - everpad 설치 (0) | 2014.09.08 |