Vim Config .vimrc

Vim 的语法配置

  • ~/.vimrc

Vim 简单配置

syntax on

if &background == "dark"
  colorscheme eveninng
else
  colorscheme morning
endif

配置增强

set shiftwidth=4

set virtualedit=all

highlight WhitespaceEOL ctermbg=red guibg=red
match WhitespaceEOL /\s\+$/