gpt4 book ai didi

vim - 为 VIM 安装 Vundle

转载 作者:行者123 更新时间:2023-12-03 23:32:02 25 4
gpt4 key购买 nike

我无法安装 Vundle

我已按照 GitHub 上的说明进行操作;

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

就这样...
这是 cd .vim 的树
├── bundle
│   └── Vundle.vim
│   ├── autoload
│   │   ├── vundle
│   │   │   ├── config.vim
│   │   │   ├── installer.vim
│   │   │   └── scripts.vim
│   │   └── vundle.vim
│   ├── changelog.md
│   ├── CONTRIBUTING.md
│   ├── doc
│   │   └── vundle.txt
│   ├── LICENSE-MIT.txt
│   ├── README.md
│   └── test
│   ├── files
│   │   └── test.erl
│   ├── minirc.vim
│   └── vimrc
└── $MYVIMRC

7个目录,13个文件

并在 .vimrc
set nocompatible               " be iMproved
filetype off

为了编辑我在 vim 中使用的 .vimrc:
:e $MYVIMRC

你能帮忙安装 Vundle 吗?

最佳答案

就像@FDinoff 说的,你错过了你应该进入的东西 .vimrc .

这是它的样子:

" vundle {{{1

" needed to run vundle (but i want this anyways)
set nocompatible

" vundle needs filtype plugins off
" i turn it on later
filetype plugin indent off
syntax off

" set the runtime path for vundle
set rtp+=~/.vim/bundle/Vundle.vim

" start vundle environment
call vundle#begin()

" list of plugins {{{2
" let Vundle manage Vundle (this is required)
"old: Plugin 'gmarik/Vundle.vim'
Plugin 'VundleVim/Vundle.vim'

" to install a plugin add it here and run :PluginInstall.
" to update the plugins run :PluginInstall! or :PluginUpdate
" to delete a plugin remove it here and run :PluginClean
"

" YOUR LIST OF PLUGINS GOES HERE LIKE THIS:
Plugin 'bling/vim-airline'

" add plugins before this
call vundle#end()

" now (after vundle finished) it is save to turn filetype plugins on
filetype plugin indent on
syntax on

你可以看看我的 .vimrc如果你愿意( https://github.com/linluk/my-dot-files/blob/master/vimrc )。

如评论中所述,您需要在将插件添加到您的 .vimrc 后安装它们。

安装插件的步骤
  • 加给你 .vimrc之间call vundle#begin()call vundle#end()
  • 保存 .vimrc
  • 类型 <ESC>:PluginInstall<CR>

  • 更新插件
  • 类型 <ESC>:PluginInstall!<CR><ESC>:PluginUpdate<CR>

  • 删除插件
  • .vimrc 中删除它
  • 保存 .vimrc
  • 类型 <ESC>:PluginClean<CR>
  • 关于vim - 为 VIM 安装 Vundle,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/27750874/

    25 4 0
    Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
    广告合作:1813099741@qq.com 6ren.com