vim的修改

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的环境。

先备份文件 /etc/vim/vimrc  然后删除原来内容,将以下内容复制粘贴进去保存退出即可。



猜你喜欢

转载自blog.csdn.net/jinyuxiaoqiang/article/details/78043231