remove vundle from vimrc

This commit is contained in:
Jakobus Schürz 2020-10-29 23:13:00 +01:00
parent 25b8ae7eed
commit 574905c5b5

162
vimrc
View file

@ -11,87 +11,87 @@ filetype off " required
let g:NERDTreeDirArrows = 1 let g:NERDTreeDirArrows = 1
if !empty($MYSHELLCONFIG_VIM_PLUGINS) "if !empty($MYSHELLCONFIG_VIM_PLUGINS)
let pluginrepopath=$MYSHELLCONFIG_VIM_PLUGINS . '/' " let pluginrepopath=$MYSHELLCONFIG_VIM_PLUGINS . '/'
let pluginextension='.git' " let pluginextension='.git'
else "else
let pluginrepopath='' " let pluginrepopath=''
let pluginextension='' " let pluginextension=''
endif "endif
"
if !empty(glob("~/.vim/bundle/Vundle.vim")) "if !empty(glob("~/.vim/bundle/Vundle.vim"))
" set the runtime path to include Vundle and initialize " " set the runtime path to include Vundle and initialize
set rtp+=~/.vim/bundle/Vundle.vim " set rtp+=~/.vim/bundle/Vundle.vim
call vundle#begin() " call vundle#begin()
"
" alternatively, pass a path where Vundle should install plugins " " alternatively, pass a path where Vundle should install plugins
"call vundle#begin('~/some/path/here') " "call vundle#begin('~/some/path/here')
"
" let Vundle manage Vundle, required " " let Vundle manage Vundle, required
"
Plugin pluginrepopath . 'gmarik/Vundle.vim' . pluginextension " Plugin pluginrepopath . 'gmarik/Vundle.vim' . pluginextension
Plugin pluginrepopath . 'vim-scripts/Zenburn' . pluginextension " Plugin pluginrepopath . 'vim-scripts/Zenburn' . pluginextension
Plugin pluginrepopath . 'Solarized' . pluginextension " Plugin pluginrepopath . 'Solarized' . pluginextension
Plugin pluginrepopath . 'altercation/vim-colors-solarized' . pluginextension " Plugin pluginrepopath . 'altercation/vim-colors-solarized' . pluginextension
Plugin pluginrepopath . 'vim-scripts/indentpython.vim' . pluginextension " Plugin pluginrepopath . 'vim-scripts/indentpython.vim' . pluginextension
Plugin pluginrepopath . 'tmhedberg/SimpylFold' . pluginextension " Plugin pluginrepopath . 'tmhedberg/SimpylFold' . pluginextension
Plugin pluginrepopath . 'vim-syntastic/syntastic' . pluginextension " Plugin pluginrepopath . 'vim-syntastic/syntastic' . pluginextension
Plugin pluginrepopath . 'ctrlpvim/ctrlp.vim' . pluginextension " Plugin pluginrepopath . 'ctrlpvim/ctrlp.vim' . pluginextension
Plugin pluginrepopath . 'preservim/nerdtree' . pluginextension " Plugin pluginrepopath . 'preservim/nerdtree' . pluginextension
Plugin pluginrepopath . 'Xuyuanp/nerdtree-git-plugin' . pluginextension " Plugin pluginrepopath . 'Xuyuanp/nerdtree-git-plugin' . pluginextension
Plugin pluginrepopath . 'jistr/vim-nerdtree-tabs' . pluginextension " Plugin pluginrepopath . 'jistr/vim-nerdtree-tabs' . pluginextension
Plugin pluginrepopath . 'tpope/vim-fugitive' . pluginextension " Plugin pluginrepopath . 'tpope/vim-fugitive' . pluginextension
Plugin pluginrepopath . 'Lokaltog/powerline' . pluginextension, {'rtp': 'powerline/bindings/vim/'} " Plugin pluginrepopath . 'Lokaltog/powerline' . pluginextension, {'rtp': 'powerline/bindings/vim/'}
Plugin pluginrepopath . 'rakr/vim-togglebg' . pluginextension " Plugin pluginrepopath . 'rakr/vim-togglebg' . pluginextension
Plugin pluginrepopath . 'ConradIrwin/vim-bracketed-paste' . pluginextension " Plugin pluginrepopath . 'ConradIrwin/vim-bracketed-paste' . pluginextension
" Plugin pluginrepopath . 'ryanpcmcquen/fix-vim-pasting' . pluginextension "" Plugin pluginrepopath . 'ryanpcmcquen/fix-vim-pasting' . pluginextension
" Plugin pluginrepopath . 'Valloric/YouCompleteMe' . pluginextension "" Plugin pluginrepopath . 'Valloric/YouCompleteMe' . pluginextension
"
"
"
"Plugin 'gmarik/Vundle.vim' " "Plugin 'gmarik/Vundle.vim'
"Plugin 'Zenburn' " "Plugin 'Zenburn'
"Plugin 'Solarized' " "Plugin 'Solarized'
"Plugin 'altercation/vim-colors-solarized.git' " "Plugin 'altercation/vim-colors-solarized.git'
"Plugin 'vim-scripts/indentpython.vim' " "Plugin 'vim-scripts/indentpython.vim'
"Plugin 'tmhedberg/SimpylFold' " "Plugin 'tmhedberg/SimpylFold'
"Plugin 'vim-syntastic/syntastic' " "Plugin 'vim-syntastic/syntastic'
"Plugin 'ctrlpvim/ctrlp.vim' " "Plugin 'ctrlpvim/ctrlp.vim'
"Plugin 'scrooloose/nerdtree' " "Plugin 'scrooloose/nerdtree'
"Plugin 'Xuyuanp/nerdtree-git-plugin' " "Plugin 'Xuyuanp/nerdtree-git-plugin'
"Plugin 'jistr/vim-nerdtree-tabs' " "Plugin 'jistr/vim-nerdtree-tabs'
"Plugin 'tpope/vim-fugitive' " "Plugin 'tpope/vim-fugitive'
"Plugin 'Lokaltog/powerline', {'rtp': 'powerline/bindings/vim/'} " "Plugin 'Lokaltog/powerline', {'rtp': 'powerline/bindings/vim/'}
"Plugin 'rakr/vim-togglebg' " "Plugin 'rakr/vim-togglebg'
"Plugin 'ConradIrwin/vim-bracketed-paste' " "Plugin 'ConradIrwin/vim-bracketed-paste'
"Plugin 'ryanpcmcquen/fix-vim-pasting' " "Plugin 'ryanpcmcquen/fix-vim-pasting'
"Plugin 'Valloric/YouCompleteMe' " "Plugin 'Valloric/YouCompleteMe'
"
" Plugin 'https://git.schuerz.at/public/Vim/Vundle.vim.git' "" Plugin 'https://git.schuerz.at/public/Vim/Vundle.vim.git'
" Plugin 'https://git.schuerz.at/public/Vim/Zenburn.git' "" Plugin 'https://git.schuerz.at/public/Vim/Zenburn.git'
" Plugin 'https://git.schuerz.at/public/Vim/vim-colors-solarized.git' "" Plugin 'https://git.schuerz.at/public/Vim/vim-colors-solarized.git'
" Plugin 'https://git.schuerz.at/public/Vim/indentpython.vim.git' "" Plugin 'https://git.schuerz.at/public/Vim/indentpython.vim.git'
" Plugin 'https://git.schuerz.at/public/Vim/SimpylFold.git' "" Plugin 'https://git.schuerz.at/public/Vim/SimpylFold.git'
" Plugin 'https://git.schuerz.at/public/Vim/syntastic.git' "" Plugin 'https://git.schuerz.at/public/Vim/syntastic.git'
" Plugin 'https://git.schuerz.at/public/Vim/ctrlp.vim.git' "" Plugin 'https://git.schuerz.at/public/Vim/ctrlp.vim.git'
" Plugin 'https://git.schuerz.at/public/Vim/scrooloose/nerdtree' "" Plugin 'https://git.schuerz.at/public/Vim/scrooloose/nerdtree'
" Plugin 'https://git.schuerz.at/public/Vim/Xuyuanp/nerdtree-git-plugin' "" Plugin 'https://git.schuerz.at/public/Vim/Xuyuanp/nerdtree-git-plugin'
" Plugin 'https://git.schuerz.at/public/Vim/vim-nerdtree-tabs.git' "" Plugin 'https://git.schuerz.at/public/Vim/vim-nerdtree-tabs.git'
" Plugin 'https://git.schuerz.at/public/Vim/vim-fugitive.git' "" Plugin 'https://git.schuerz.at/public/Vim/vim-fugitive.git'
" Plugin 'https://git.schuerz.at/public/Vim/powerline.git', {'rtp': 'powerline/bindings/vim/'} "" Plugin 'https://git.schuerz.at/public/Vim/powerline.git', {'rtp': 'powerline/bindings/vim/'}
" Plugin 'https://git.schuerz.at/public/Vim/vim-togglebg.git' "" Plugin 'https://git.schuerz.at/public/Vim/vim-togglebg.git'
" Plugin 'https://git.schuerz.at/public/Vim/vim-bracketed-paste.git' "" Plugin 'https://git.schuerz.at/public/Vim/vim-bracketed-paste.git'
" "Plugin 'https://git.schuerz.at/public/Vim/ryanpcmcquen/fix-vim-pasting' "" "Plugin 'https://git.schuerz.at/public/Vim/ryanpcmcquen/fix-vim-pasting'
" "Plugin 'https://git.schuerz.at/public/Vim/Valloric/YouCompleteMe' "" "Plugin 'https://git.schuerz.at/public/Vim/Valloric/YouCompleteMe'
"
" add all your plugins here (note older versions of Vundle " " add all your plugins here (note older versions of Vundle
" used Bundle instead of Plugin) " " used Bundle instead of Plugin)
"
" ... " " ...
"
" All of your Plugins must be added before the following line " " All of your Plugins must be added before the following line
call vundle#end() " required " call vundle#end() " required
endif "endif
filetype plugin indent on " required filetype plugin indent on " required
"------------------------------------------------------------ "------------------------------------------------------------
set encoding=utf-8 set encoding=utf-8