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

vim常用配置

时间:2014-11-19 18:30:52      阅读:170      评论:0      收藏:0      [点我收藏+]

标签:io   ar   os   sp   文件   on   cti   bs   line   

 

vim /etc/vim/vimrc

set nu " 显示行号
53 set novisualbell " 不要闪烁
54 set nocompatible "去掉讨厌的有关vi一致性模式,避免以前版本的一些bug和局限
55 " 显示中文帮助
56 if version >= 603
57 set helplang=cn
58 set encoding=utf-8
59 endif
60 " 映射全选+复制 ctrl+a
61 map <C-A> ggVGY
62 map! <C-A> <Esc>ggVGY
63 map <F12> gg=G
64 " 选中状态下 Ctrl+c 复制
65 vmap <C-c> "+y
66 " 自动缩进
67 set autoindent
68 "set cindent
69 " 显示行号
70 set number
71 "禁止生成临时文件
72 set nobackup
73 set noswapfile

"自动补全
75 :inoremap ( ()<ESC>i
76 :inoremap ) <c-r>=ClosePair(‘)‘)<CR>
77 :inoremap { {<CR>}<ESC>O
78 :inoremap } <c-r>=ClosePair(‘}‘)<CR>
79 :inoremap [ []<ESC>i
80 :inoremap ] <c-r>=ClosePair(‘]‘)<CR>
81 :inoremap " ""<ESC>i
82 :inoremap ‘ ‘‘<ESC>i
83 function! ClosePair(char)
84 if getline(‘.‘)[col(‘.‘) - 1] == a:char
85 return "\<Right>"
86 else
87 return a:char
88 endif
89 endfunction
90 filetype plugin indent on

vim常用配置

标签:io   ar   os   sp   文件   on   cti   bs   line   

原文地址:http://www.cnblogs.com/8431lgx/p/4108674.html

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