美文网首页
2020-08-04 vimrc设置

2020-08-04 vimrc设置

作者: YPCHEN1992 | 来源:发表于2020-08-05 09:15 被阅读0次

配置linux .vimrc

" YP CHEN's sample .vimrc file
" show line numbers
set number

" enable syntax highlighting
syntax on

" colorscheme
colo darkblue

" suto indenting
set autoindent

" show the editing mode on the last line
set showmode

" highlight matching search strings
set hlsearch

" not compatible with vi
set nocompatible

" Number of spaces that a <Tab> in the file counts for
set tabstop=4
set expandtab

相关文章

网友评论

      本文标题:2020-08-04 vimrc设置

      本文链接:https://www.haomeiwen.com/subject/pajwrktx.html