vim的修改

前端之家收集整理的这篇文章主要介绍了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 然后删除原来内容,将以下内容复制粘贴进去保存退出即可。

原文链接:https://www.f2er.com/bash/390508.html

猜你在找的Bash相关文章