使用vim編輯器開啟~/.vimrc修改配置,沒有會自動建立
vim ~/.vimrc
輸入以下配置
"設定編碼
set fileencodings=utf-8,ucs-bom,gb18030,gbk,gb2312,cp936
set termencoding=utf-8
set encoding=utf-8
"顯示行號
set nu
set number
"突出顯示當前行
set cursorline
set cul
"cursorline的縮寫形式
hi cursorline cterm=none ctermbg=lightcyan ctermfg=lightgreen guibg=none guifg=none
"突出顯示當前列
"set cursorcolumn
"set cuc
"cursorcolumn的縮寫形式
"hi cursorcolumn cterm=none ctermbg=darkred ctermfg=white guibg=darkred guifg=white
"啟用滑鼠
"set mouse=a
set selection=exclusive
set selectmode=mouse,key
"顯示括號匹配
set showmatch
"設定tab長度為4空格
set tabstop=4
"設定自動縮排長度為4空格
set shiftwidth=4
"繼承前一行的縮排方式,適用於多行注釋
set autoindent
"設定貼上模式
set paste
"顯示空格和tab鍵
set listchars=tab:>-,trail:- "
,eol:$
set list
"總是顯示狀態列
set laststatus=2
"顯示游標當前位置
set ruler
filetype plugin indent on
"讓vimrc配置變更立即生效
autocmd bufwritepost $myvimrc source $myvimrc
推薦vim配置
設定編碼,處理中文亂碼,檔案預設utf8編碼 set fileencodings utf 8,ucs bom,cp936,big5 設定預設配色方案 colorscheme default set nu set ts 4 sts 4 sw 4 set autoindent set expandtab...
Windows下使用Vim極簡入門
2018 10 12更新 可以先在web瀏覽器中找到一點使用vim的感覺,請參考這篇文章 想要geek範?還是初學linux vim不熟練?surfingkeys 可以幫到你 surfingkeys快速上手 移動游標 h j k l分別對應左 下 上 右 0,行首。行尾。gg,檔案頭。g,檔案尾。儲...
極簡SpringBoot配置beetl模板引擎
這是乙個國產的,超過thymeleaf效能十倍的模板引擎,沒有理由不學會它 我們建立乙個springboot專案 在專案中pom檔案中加入 org.springframework.boot spring boot starter web com.ibeetl beetl framework star...