VIM编辑器基本设置

一 为什么要设置VIM编辑器
友好的设置VIM编辑器,能更加方便、快捷的提高shell程序编程效率。
 
二 设置方式分类
1、临时性质的设置
高亮开关
在末行模式下:
:syntax off (高亮关闭)
:syntax on (高亮打开)
2、永久性质的设置(修改vimrc文件)
总体生效
[root@localhost monitor_man]# vim /etc/vimrc
特定用户生效
[root@localhost ~]# vim .vimrc
 
三 VIM编辑器设置
1、语法高亮
syntax on
2、显示关闭行号
set number
set nonumber
3、自动缩进
set autoindent
set cindent
4、自动加入文件头
 
四 VIM编辑器永久设置实战
[root@localhost ~]# vim .vimrc
 
1 syntax on
2 set autoindent
3 set cindent
4 set number
5 autocmd BufNewFile *.sh exec ":call SetTitle()"
6 let $author_name = "cakin"
7 let $author_email = "[email protected]"
8
9 func SetTitle()
10 if &filetype == 'sh'
11 call setline(1,"\#############################################################")
12 call append(line("."),"\# File Name: ".expand("%"))
13 call append(line(".")+1,"\# Author:".$author_name)
14 call append(line(".")+2,"\# mail:".$author_email)
15 call append(line(".")+3,"\# Created Time: ".strftime("%c"))
16 call append(line(".")+4,"\#==============================================")
17 call append(line(".")+5,"\#!/bin/bash")
18 call append(line(".")+6,"")
19 endif
20 endfunc
 
五 设置后的效果

VIM编辑器基本设置_第1张图片
 

 
  • VIM编辑器基本设置_第2张图片
  • 大小: 8.7 KB
  • 查看图片附件

你可能感兴趣的:(Linux)