我的VIM常用的配置

2021-05-28 02:19:57 字數 964 閱讀 2159

"當檔案在外部被修改,自動更新該檔案

set autoread

"高亮顯示當前行

set cursorline

hi cursorline guibg=#222222

hi cursorcolumn guibg=#333333

"開啟摺疊

set nofen

set fdl=0

"設定tab鍵為4個空格

set tabstop=4

set smarttab

"不要在單詞中斷行

set lbr

"自動縮排

set ai

"智慧型縮排

set si

"wrap lines

set wrap

"turn on wild menu

set wildmenu

"顯示標尺

set ruler

"顯示行數

set nu

"顯示匹配的括號()

set showmatch

"高亮顯示搜尋的內容

set hlsearch

"開啟狀態列

set laststatus=2

"顯示當前目錄的函式

function! curdir()

let curdir = substitute(getcwd(), '/users/amir/', "~/", "g")

return curdir

endfunction

"設定狀態列的資訊

set statusline=/ %f%m%r%h/ %w/ / cwd:/ %r%%h/ / / line:/ %l/%l:%c

"如果taglist視窗是最後乙個視窗,則退出vim

let tlist_exit_onlywindow = 1

"設定taglist的快捷鍵為f9

map :tlisttoggle

我的VIM常用的配置

當檔案在外部被修改,自動更新該檔案 set autoread 高亮顯示當前行 set cursorline hi cursorline guibg 222222 hi cursorcolumn guibg 333333 開啟摺疊 set nofen set fdl 0 設定tab鍵為4個空格 set...

我的VIM配置

近來,鍵盤敲的手疼,所以貼出vim配置,看看是什麼原因導致的手疼,是鍵盤太差了,還是vim配置有問題。set nu set ts 4set expandtab set autoindent set shiftwidth 4set encoding utf 8set termencoding utf ...

我的vim配置

vim是相當強大的文字編輯器,下面是我的vim配置。在根目錄下新建檔案.vimrc,複製以下 到該檔案即可。搜尋時高亮 set hlsearch 隨著鍵入即時搜尋 set incsearch tab 鍵設定4個空格 set tabstop 4 set shiftwidth 4 set expandt...