Basic configuration of vim

As the title, just some of the most basic configuration, can make vim a little easier to use. It does not contain functions that may cause inconvenience in some cases or require the installation of plug-ins.

" Sets how many lines of history VIM has to remember
set history=700

" Ignore case when searching
set ignorecase

" Highlight search results
set hlsearch

" Set utf-8 as standard encoding and en_US as the standard language
set encoding=utf8

" Always show current position
set ruler

" Show matching brackets when text indicator is over them
set showmatch


"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""
" => Text, tab and indent related
"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""
" Use spaces instead of tabs
set expandtab

" Be smart when using tabs
set smarttab

" 1 tab == 4 spaces
set shiftwidth=4

" display the line number
set number

" Use Unix as the standard file type
set ffs=unix,dos,mac

"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""
" => Colors and Fonts
"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""
" Enable syntax highlighting
syntax enable

colorscheme desert
set background=dark

" Show Chinese
let &termencoding=&encoding
set fileencodings=utf-8,gbk

" 高亮显示当前行
set cursorline
hi CursorLine cterm=NONE ctermbg=darkred ctermfg=white guibg=darkred guifg=white

" 显示换行符和制表符
set list

" 把换行符和制表符换成容易看的字符
set listchars=tab:>-,trail:-

" 自动识别文件类型,在makefile文件中使用制表符(不以空格代替)
filetype plugin on

 

Guess you like

Origin blog.csdn.net/grf123/article/details/103229995