runtime! debian.vim if has("Syntax") Syntax on endif set background=dark if has("autocmd") au BufReadPost * if line("'\"") > 1 && line("'\"") <= line("$") | exe "normal! g'\"" | endif endif if has("autocmd") filetype plugin indent on endif if filereadable("/etc/vim/vimrc.local") source /etc/vim/vimrc.local endif Syntax enable set textwidth=79 set shiftwidth=4 set tabstop=4 set expandtab set softtabstop=4 set shiftround set fileencodings=utf-8 set encoding=utf8 set tenc=utf8
在服务器上编写对空格敏感的脚本时,可以通过一下配置修改vim的环境。 原文链接:https://www.f2er.com/bash/390508.html