输入vim test.sh 新建后缀sh的文件,效果如下:

 

 

具体/etc/vimrc配置为:

 

 if expand("%:e") == 'sh'

 call setline(1,"#!/bin/bash")
 call setline(2,"#")
 call setline(3,"#*************************************")
 call setline(4,"#Author: hushuning")
 call setline(5,"#QQ: 36027102")
 call setline(6,"#Date: ".strftime("%Y-%m-%d"))
 call setline(7,"#Filename: ".expand("%"))
 call setline(8,"#*************************************")
 call setline(9,"")
 endif
 endfunc

 

 

 

posted on 2019-10-05 19:14  专注于区块链开发  阅读(552)  评论(0)    收藏  举报