首页 > 代码库 > shell script语法高亮和自动缩进的配置

shell script语法高亮和自动缩进的配置

编辑/etc/vimrc文件,在文件末尾添加以下内容:

 66 syntax on 67 set tabstop=4 68 set softtabstop=4 69 set shiftwidth=4 70 set autoindent 71 set nu 72  73 set nocompatible 74 filetype plugin indent on
技术分享

shell script语法高亮和自动缩进的配置