vim配置檔案

2021-09-01 07:34:21 字數 1020 閱讀 4870

"設定行行

set nu 

set tabstop=4

set shiftwidth=4

set is

set si

set ai

set hlsearch

"取消自動備份,這樣就不會有以~結尾的檔案了(這是備份檔案,如果你覺得多餘的話可以加上下面一句)。

set nobackup

"總是顯示當開啟的檔案的名字

set ls=2

"windows下可以解決vim開啟utf-8檔案出現中文亂碼的問題

set fileencodings=utf-8,cp936,gb18030,gbk,gb2312,ucs-bom,latin-1 

"使用tag檔案用於導航

"需要安裝ctag,如果有多個tags檔案,用逗號隔開

set tags=/home/tangwu/study/php/tags

"在ctag的根目錄下依次執行./configure; make ; make install 即可。

"安裝好ctag之後,cd到/home/tangwu/study/php/,這是我的專案的根目錄,執行「ctags -r *」,將會生成tags檔案。

"使用taglist

"taglist解壓後的plugin和doc目錄下的檔案分別複製到~/.vim/plugin和~/.vim/doc下。

"taglist的配置,記得要執行一遍vim的冒號命令":helptags  ~/.vim/doc"

let tlist_ctags_cmd = 'ctags'           "ctags安裝目錄下的bin目錄要加入到path環》境變數中

let tlist_show_one_file = 1             "顯示當前緩衝區中的檔案的tag

let tlist_exit_onlywindow = 1           "taglist視窗是最後乙個視窗時退出vim

let tlist_auto_open = 1                 "預設開啟tag視窗

vim 配置檔案

set encoding utf 8 set fileencoding utf 8 syntax highlight syntax enable syntax on colorscheme colorscheme desert here to set line number set nu here ...

vim配置檔案

vundle 配置 set nocompatible filetype off set rtp vim bundle vundle.vim call vundle begin plugin vundlevim vundle.vim vim 外掛程式管理 plugin spf13 vim colors...

vim配置檔案

乙個簡單的vim配置檔案,留下備用,修改配置檔案永久生效,vim vimrc set nocompatible 關閉 vi 相容模式 syntax on 自動語法高亮 set number 顯示行號 set cursorline 突出顯示當前行 set ruler 開啟狀態列標尺 set shift...