码迷,mamicode.com
首页 > 系统相关 > 详细

Vim配置文件

时间:2015-08-17 19:44:42      阅读:198      评论:0      收藏:0      [点我收藏+]

标签:配置文件   定制   vim   

# cat ~/.vimrc
set nocompatible
filetype indent on
filetype plugin on
set tabstop=4
set shiftwidth=4
set autoindent
set cindent
set smartindent
set hlsearch
syntax enable
set dict=/usr/share/dict/words
if has(‘statusline‘)
    set laststatus=2
    "Broken down into easily includeable segments
    set statusline=%<%f\ " Filename
    set statusline+=%w%h%m%r " Options
    set statusline+=\ [%{&ff}/%Y] " filetype
    "ASCII/Hexadecimal value of under current cursor
    set statusline+=\ [ASCII=\%03.3b/HEX=\%02.2B]
    "Right aligned file nav info
    set statusline+=%=%-14.(%l,%c%V%)\ %p%%
endif


效果为:

技术分享

本文出自 “天道酬勤” 博客,请务必保留此出处http://lavenliu.blog.51cto.com/5060944/1685327

Vim配置文件

标签:配置文件   定制   vim   

原文地址:http://lavenliu.blog.51cto.com/5060944/1685327

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