vim是一个类似于vi的著名的功能强大、高度可定制的文本编辑器,在vi的基础上改进和增加了很多特性。
作为一个Linux爱好者,vim是最为常用的文本编辑器,默认vim的配置文件.vimrc不存在,我们可以根据自己的需要配置该文件。
[root@sam01| ~/python/test]# cat /root/.vimrc
set encoding=utf-8
set number
syntax enable
set background=dark
autocmd BufNewFile *.sh,*.py exec "call SetTitle()"
func SetTitle()
if &filetype == 'sh'
call setline(1,"#!/usr/bin/env bash")
call append(line("."), "# author: Sam")
call append(line(".")+1, "# created time: ".strftime("%Y-%m-%d %H:%M:%S"))
call append(line(".")+2, " ")
elseif &filetype == 'python'
call setline(1,"#!/usr/bin/env python")
call append(line("."), "# -*- coding:utf-8 -*-")
call append(line(".")+1, "# author: Sam")
call append(line(".")+2, "# created time: ".strftime("%Y-%m-%d %H:%M:%S"))
call append(line(".")+3, " ")
endif
endfunc
autocmd BufNewFile * normal G