vim的基礎配置

如題,只是一些最最基本的配置,能夠讓vim稍微好用一些。並不包含可能引起部分情況下不方便或者需要安裝插件才能實現的功能。

" 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

 

發表評論
所有評論
還沒有人評論,想成為第一個評論的人麼? 請在上方評論欄輸入並且點擊發布.
相關文章