首页 > 代码库 > VIM配置

VIM配置

"

" FileName: .vimrc

" Author: zangzhiyuan

" Date: 2013-11-21 9:37:24

" Description:vim configuration

"


"设置语法高亮

syntax enable

syntax on


"设置显示行号

set number


"设置缩进大小

set sw=4

set ts=4


"设置.pc文件代码高亮

autocmd BufEnter *.pc set filetype=esqlc


"设置编码

set fileencodings=utf-8

set termencoding=utf-8

set fileformat=unix

set encoding=prc


"不进行备份

set nobackup


"自动缩进

set autoindent

"c语言缩进

set cindent


"括号匹配

set showmatch


 "搜索忽略大小写

set ignorecase  


" 去掉输入错误的提示声音

set noeb


"共享剪贴板  

set clipboard+=unnamed 


" 自动缩进

set ai              

" 智能缩进

set si              


"配色方案

colorscheme torte


VIM配置