"关闭兼容模式
set nocompatible
"设置历史记录
set viminfo=""
set history=20
"允许插件
filetype plugin on
"编辑设置
syntax on
filetype on
filetype indent on
set backspace=indent,eol,start
set tabstop=4
set number
"共享剪贴板
set clipboard+=unnamed
"高亮显示匹配的括号
set showmatch
"匹配括号高亮时间
set matchtime=2
"在搜索时忽略大小写
set ignorecase
"不要闪烁
set novisualbell
"自动格式化
set formatoptions=tcrqn
"继承前一行的缩进方式
set autoindent
"自动缩进
set smartindent
"统一缩进为4
set tabstop=4
set softtabstop=4
set shiftwidth=4
"不要用空格代替制表符
set noexpandtab
"但是对hs文件需要用空格代替制表符
au BufNewFile,BufRead *.hs set expandtab
"命令回显
set showcmd
"GVIM默认配色方案
color peachpuff
"设置tags
set tags=tags
set autochdir
"从不备份
set nobackup
.vimrc
最新推荐文章于 2025-04-27 08:12:49 发布