码迷,mamicode.com
首页 > 其他好文 > 详细

vimrc

时间:2014-07-29 18:27:12      阅读:332      评论:0      收藏:0      [点我收藏+]

标签:color   文件   art   ar   line   window   type   windows   

"**********BASIC**********
"设置行号
set nu
"不要swap文件
set nobackup
"设置兼容性关闭
set nocompatible
"高亮显示搜索结果
set hlsearch
"自动显示搜索情况
set showmatch
"编码
set encoding=utf-8
set fencs=utf-8,ucs-bom,shift-jis,gb18030,gbk,gb2312,cp936
set fileencodings=utf-8,ucs-bom,chinese
"语言
set langmenu=zh_CN.UTF-8
"语法开关
syntax enable
syntax on
"缩进
set tabstop=4
set softtabstop=4
set shiftwidth=4
"自动缩进
set autoindent
"C语言缩进
set cindent
"智能缩进
set smartindent
"文件检测
filetype on
filetype plugin indent on 
"vim保存历史记录
set history=400
"自动换行
set wrap
"整词换行
set linebreak   
"显示制表符
"set list       
"显示状态栏
set ruler 
"显示命令
show cmd
                   
"**********COLOR**********
"colorscheme solarized,you must download it from  , then you should add it in you vimrc file 
syntax enable
set background=dark
colorscheme solarized
    
"**********ELSE**********
"pathogen makes it super easy to install plugins and runtime files in their own private directories.You can download it from   , you should creat a folder named autoload under your ~/vimXX on Unix systems, or $VIM\vimXX on Windows , put pathogen.vim into folder autoload.After done all , you should add ‘call pathogen#infect()‘ in you vimrc file.You should read more in upon website.
call pathogen#infect()




vimrc,布布扣,bubuko.com

vimrc

标签:color   文件   art   ar   line   window   type   windows   

原文地址:http://my.oschina.net/nibnat/blog/295937

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!