vim 配置


set tabstop=4
set expandtab
set shiftwidth=4
syntax on
syntax enable
set number
set cursorline
set hlsearch
set background=dark
set termguicolors
set spell

highlight LineNr guifg=DarkGrey
highlight CursorLineNr guifg=Yellow cterm=NONE
highlight CursorLine cterm=NONE
highlight Search guifg=White guibg=DarkBlue

hi link markdownError Normal
syn match markdownIgnore "$x_i$"
原文地址:https://www.cnblogs.com/twfb/p/13814159.html