vim 设置一个shell的静态模版

vim 设置shell的模版

进入shell脚本编写的过程中,需要在第一行写#!/bin/bash
后面按照标准习惯写上作者,开发时间等,以及开发的脚本用途甚至
在oracle某些操作中要上环境变量等信息,为了方便使用提前设置后的模板。\

1 /etc/vimrc中查找模板配置语句并修改

[root@VM-0-6-centos script]# vim /etc/vimrc

autocmd BufNewFile *.spec 0r /usr/share/vim/vimfiles/template.spec -- 找到这一句,.spec 改为.sh

2 在家目录中设置模板路径

set nu
set autoindent
color default
set et
set ts=4
set sts=4
set sw=4
set smarttab
set ai
set si
set ic
set hls is
autocmd BufNewFile *.sh 0r /usr/share/vim/vimfiles/template.sh  ---加上这样的一句话

3 根据步骤2中的配置模板路径设置模板

#!/bin/bash
#Program :
#
#history:
#2021/07/19
#User:Thomas

PATH=/bin:/sbin:/usr/bin:/usr/sbin:/usr/local/bin:/usr/local/sbin:~/bin
export PATH

你可能感兴趣的:(vim 设置一个shell的静态模版)