首页 > 系统服务 > 详细

配置linux下的vimrc

时间:2017-09-18 18:09:33      阅读:517      评论:0      收藏:0      [点我收藏+]

我运维和dba通常使用的如下:

set paste

set shortmess=atI

syntax enable

syntax on

set ai

set ruler

set autoindent

set nocompatible

set magic

set confirm

set history=1000

set cursorline

highlight Comment ctermfg=lightblue guifg=darkblue

set cindent

set tabstop=4

set softtabstop=4

set shiftwidth=4

set smarttab

set si

set wrap

set showmatch

set smartindent

set cin

set hlsearch

au BufReadPost * if line("‘\"") > 0|if line("‘\"") <= line("$")|exe("norm ‘\"")|else|exe "norm $"|endif|endif

set nu


" 设置状态栏

set laststatus=2 

highlight StatusLine cterm=bold ctermfg=yellow ctermbg=blue

function! CurDir()

    let curdir = substitute(getcwd(), $HOME, "~", "g")

    return curdir

endfunction

set statusline=[%n]\ %f%m%r%h\ \|\ \ pwd:\ %{CurDir()}\ \ \|%=\|\ %l,%c\ %p%%\ \|\ ascii=%b,hex=%b%{((&fenc==\"\")?\"\":\"\ \|\ \".&fenc)}\ \|\ %{$USER}\ @\ %{hostname()}\


配置linux下的vimrc

原文:http://lee90.blog.51cto.com/10414478/1966359

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!