Change Vundle conf for Vim-Plug.

This commit is contained in:
Jeff Lance 2018-06-27 18:20:09 +02:00
parent 322cfe1f3b
commit f4f0b92737

View File

@ -44,65 +44,33 @@ cnoremap w!! w !sudo tee > /dev/null %
"""""""""""""""""""""""""""""""""""""""""" """""""""""""""""""""""""""""""""""""""""""""""
" __ ___ _ _ _ ____ _ _____ " __ _____ __ __ ____ _ _ _ ____
" \ \ / / | | | \ | | _ \| | | ____| " \ \ / /_ _| \/ | | _ \| | | | | |/ ___|
" \ \ / /| | | | \| | | | | | | _| " \ \ / / | || |\/| | | |_) | | | | | | | _
" \ V / | |_| | |\ | |_| | |___| |___ " \ V / | || | | | | __/| |__| |_| | |_| |
" \_/ \___/|_| \_|____/|_____|_____| " \_/ |___|_| |_| |_| |_____\___/ \____|
" "
"""""""""""""""""""""""""""""""""""""""""" """""""""""""""""""""""""""""""""""""""""""""""
" set the runtime path to include Vundle and initialize " Load vim-plug
set rtp+=~/.vim/bundle/Vundle.vim if empty(glob("~/.vim/autoload/plug.vim"))
call vundle#begin() execute '!curl -fLo ~/.vim/autoload/plug.vim https://raw.github.com/junegunn/vim-plug/master/plug.vim'
" alternatively, pass a path where Vundle should install plugins endif
"call vundle#begin('~/some/path/here')
" let Vundle manage Vundle, required " Specify a directory for plugins
Plugin 'VundleVim/Vundle.vim' " - For Neovim: ~/.local/share/nvim/plugged
" - Avoid using standard Vim directory names like 'plugin'
call plug#begin('~/.vim/plugged')
" on GitHub repo Plug 'flazz/vim-colorschemes'
"Plugin 'ajh17/VimCompletesMe' Plug 'xero/sourcerer.vim'
Plugin 'Shougo/denite.nvim' Plug 'romainl/apprentice'
Plugin 'itchyny/lightline.vim' Plug 'dracula/vim'
Plugin 'scrooloose/syntastic' Plug 'plasticboy/vim-markdown', { 'for': 'markdown' }
Plugin 'scrooloose/nerdtree' Plug 'scrooloose/nerdtree', { 'on': 'NERDTreeToggle' }
Plugin 'Xuyuanp/nerdtree-git-plugin'
Plugin 'vim-scripts/colorizer'
Plugin 'JamshedVesuna/vim-markdown-preview'
Plugin 'scrooloose/nerdcommenter'
Plugin 'tpope/vim-fugitive'
Plugin 'tpope/vim-sleuth'
Plugin 'Valloric/YouCompleteMe'
Plugin 'mhinz/vim-signify'
Plugin 'godlygeek/tabular'
Plugin 'tpope/vim-surround'
Plugin 'plasticboy/vim-markdown'
Plugin 'mattn/gist-vim'
Plugin 'kamwitsta/commentToggle'
Plugin 'flazz/vim-colorschemes'
Plugin 'xero/sourcerer.vim'
Plugin 'dracula/vim'
Plugin 'romainl/apprentice'
Plugin 'jacoborus/tender'
Plugin 'noahfrederick/vim-noctu'
Plugin 'ryanoasis/vim-devicons'
" Initialize plugin system
" All of your Plugins must be added before the following line call plug#end()
call vundle#end() " required
filetype plugin indent on " required
" To ignore plugin indent changes, instead use:
"filetype plugin on
"
" Brief help
" :PluginList - lists configured plugins
" :PluginInstall - installs plugins; append `!` to update or just :PluginUpdate
" :PluginSearch foo - searches for foo; append `!` to refresh local cache
" :PluginClean - confirms removal of unused plugins; append `!` to auto-approve removal
"
" see :h vundle for more details or wiki for FAQ
" Put your non-Plugin stuff after this line
@ -148,15 +116,14 @@ colorscheme dracula
""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""" """""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""
" _ _ _ _ _ " _ _ _ _ _
" _ __ | |_ _ __ _(_)_ __ ___ ___ ___| |_| |_(_)_ __ __ _ ___ " _ __ | |_ _ __ _(_)_ __ ___ ___ ___| |_| |_(_)_ __ __ _ ___
" | '_ \| | | | |/ _` | | '_ \/ __| / __|/ _ \ __| __| | '_ \ / _` / __| " | '_ \| | | | |/ _` | | '_ \/ __| / __|/ _ \ __| __| | '_ \ / _` / __|
" | |_) | | |_| | (_| | | | | \__ \ \__ \ __/ |_| |_| | | | | (_| \__ \ " | |_) | | |_| | (_| | | | | \__ \ \__ \ __/ |_| |_| | | | | (_| \__ \
" | .__/|_|\__,_|\__, |_|_| |_|___/ |___/\___|\__|\__|_|_| |_|\__, |___/ " | .__/|_|\__,_|\__, |_|_| |_|___/ |___/\___|\__|\__|_|_| |_|\__, |___/
" |_| |___/ |___/ " |_| |___/ |___/
" "
""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""" """""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""
let vim_markdown_preview_toggle=1 let vim_markdown_preview_toggle=1
let vim_markdown_preview_toggle=2 let vim_markdown_preview_toggle=2
let vim_markdown_preview_browser='firefox' let vim_markdown_preview_browser='firefox'