2015년 2월 13일 금요일

sample vimrc

execute pathogen#infect()
syntax on " ... Syntax. .. ..... ...
set nocompatible " VI ..... .... ... .... ..(VIM..)
filetype off
set rtp+=~/.vim/bundle/vundle/
call vundle#rc()
" let Vundle manage Vundle
" " required!
Bundle 'gmarik/vundle'
" " My bundles here:
Bundle 'davidhalter/jedi-vim'
filetype plugin indent on " 파일 종류에 따른 구문강조
set autoindent " 자동 들여쓰기
set cindent " C 프로그래밍용 자동 들여쓰기
set smartindent " 스마트한 들여쓰기
set bs=2
set tabstop=4 " .... 4.. ... ....
set shiftwidth=4 " .... ... .... . 4... ..
set visualbell " Alert .. .. ..... ......
set laststatus=2 " .... 2. ....
set statusline=%h%F%m%r%=[%l:%c(%p%%)] " ..... ...
set hlsearch " / ? .. ... .. .... ..... ....
set background=dark
colorscheme solarized
set backspace=eol,start,indent " 줄의 끝, 시작, 들여쓰기에서 백스페이스시 이전줄로
"set noexpandtab
set expandtab
set tags=./tags,./TAGS,tags,TAGS,/usr/share/pyshared/nova/tags
set tags+=/usr/lib/python2.7/dist-packages/tags
set tags+=/usr/lib/python2.7/tags
set nu
let Tlist_Ctags_Cmd="/usr/bin/ctags"
let Tlist_inc_Winwidth=0
let Tlist_Exit_OnlyWindow=1
let Tlist_Display_Tag_Scope = 1
let Tlist_Display_Prototype = 1
let Tlist_Use_Right_Window = 1
let Tlist_Sort_Type = "name"
let Tlist_WinWidth = 60
map :Tlist
nnoremap
nnoremap

댓글 없음:

댓글 쓰기