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 然后删除原来内容,将以下内容复制粘贴进去保存退出即可。
本文介绍了一种通过修改服务器上的vim配置文件来优化编辑体验的方法。具体操作包括备份原始vimrc文件,然后替换其内容为特定配置以实现语法高亮、自动补全等功能。
985

被折叠的 条评论
为什么被折叠?



