一些vi配置:
# 光标所在行显示下划线:
set cursorline
# 对应关闭为set nocursorline
# 高亮显示光标所在列
set cursorcolumn
# 对应关闭为set nocursorcolumn
# tab键字符替换为4个空格
set ts=4
set sw=4
set expandtab
set autoindent
# 复制粘贴模式
set paste
if &diff
colorscheme evening
endif
标签:set,vi,笔记,vim,关闭,光标
From: https://www.cnblogs.com/lifewithlight/p/17680735.html