我的 vimrc配置

2021-07-05 13:10:20 字數 620 閱讀 9720

syntax on 」 自動語法高亮

set number 」 顯示行號

set cursorline 」 突出顯示行

set cursorcolumn 」 突出顯示列

set tabstop=2 」 tab佔兩個空格

set ruler 」 開啟狀態列標尺

這裡有個ctags外掛程式,如果只將vim-config.tar.gz的解壓縮檔案放置到home目錄下,可能在開啟vim的時候會有類似下面的警告:

taglist: exuberant ctags ( not found in path. plugin is not loaded.

press enter or type command

tocontinue

這樣的解決方法是將該解壓出來的.vim資料夾刪除,重新安裝一次ctags外掛程式:

sudo apt-get install ctags
再次開啟就ok了。

vimrc 的基本配置

set number 顯示行號 set nowrap 不換行 set shiftwidth 4 預設縮排4個空格 set softtabstop 4 使用tab時 tab空格數 set tabstop 4 tab代表4個空格 set laststatus 2 總是顯示狀態行 backspace鍵 i...

vimrc入門配置

csharp set number set tabstop 4colorscheme the creator syntax on inoremap jj map nerdtreetoggle nmap ss easymotion s2 set hlsearch set incsearch call ...

vimrc配置文件示例

set nocompatible set number set numberwidth 4 set autoindent source home murphy set encoding info set encoding utf 8 set fileencodings utf 8,latin 1 s...