vim 配置縮進線


安裝git

在liunx終端sudo apt install git

使用git安裝bunlde插件

git clone https://github.com/VundleVim/Vundle.vim.git ~/.vim/bundle/Vundle.vim

對vimrc文件進行配置 call vundle#begin() call vundle#end()


之間可以添加自己的插件;將

Plugin 'nathanaelkane/vim-indent-guides'

插入即可

https://github.com/nathanaelkane/vim-indent-guides 有詳細說明

filetype off
syntax on
set rtp+=~/.vim/bundle/Vundle.vim
call vundle#begin()
" 加載插件
Plugin 'VundleVim/Vundle.vim'
Plugin 'scrooloose/nerdtree'
Plugin 'vim-airline/vim-airline'
Plugin 'vim-airline/vim-airline-themes'
Plugin 'michaelHL/awesome-vim-colorschemes'
Plugin 'Tagbar'
Plugin 'Tabular'
call vundle#end()
filetype plugin indent on     " require


免責聲明!

本站轉載的文章為個人學習借鑒使用,本站對版權不負任何法律責任。如果侵犯了您的隱私權益,請聯系本站郵箱yoyou2525@163.com刪除。



 
粵ICP備18138465號   © 2018-2025 CODEPRJ.COM