mirror of
https://github.com/vbrandl/dotfiles
synced 2024-11-23 00:13:49 +01:00
49 lines
1.6 KiB
VimL
49 lines
1.6 KiB
VimL
|
call vundle#begin()
|
||
|
|
||
|
" vundle needs to handle itself
|
||
|
Plugin 'VundleVim/Vundle.vim'
|
||
|
|
||
|
Plugin 'vim-airline/vim-airline'
|
||
|
Plugin 'vim-airline/vim-airline-themes'
|
||
|
|
||
|
" colorschemes
|
||
|
" Plug 'dracula/vim'
|
||
|
Plugin 'joshdick/onedark.vim'
|
||
|
|
||
|
Plugin 'editorconfig/editorconfig-vim'
|
||
|
|
||
|
Plugin 'w0rp/ale' " syntax checking
|
||
|
Plugin 'ervandew/supertab'
|
||
|
Plugin 'tpope/vim-commentary'
|
||
|
Plugin 'tpope/vim-surround'
|
||
|
Plugin 'vim-scripts/ReplaceWithRegister'
|
||
|
Plugin 'mattn/vim-maketable' " create tables from selection
|
||
|
Plugin 'dhruvasagar/vim-table-mode' " handle tables
|
||
|
Plugin 'mattn/webapi-vim' " web api
|
||
|
Plugin 'mattn/gist-vim' " create gist from within vim
|
||
|
Plugin 'michaeljsmith/vim-indent-object' " indent as textobject
|
||
|
Plugin 'Raimondi/delimitMate' " autoclose quotes and brackets
|
||
|
"Plugin 'SirVer/ultisnips' " snippets
|
||
|
Plugin 'tpope/vim-fugitive'
|
||
|
Plugin 'scrooloose/nerdtree', { 'on': ['NERDTreeToggle', 'NERDTreeFind'] } | Plugin 'Xuyuanp/nerdtree-git-plugin' | Plugin 'ryanoasis/vim-devicons'
|
||
|
Plugin 'ctrlpvim/ctrlp.vim'
|
||
|
Plugin 'neomake/neomake'
|
||
|
Plugin 'benmills/vimux'
|
||
|
Plugin 'AndrewRadev/splitjoin.vim'
|
||
|
Plugin 'tpope/vim-sleuth' " autodetect indent style (tabs vs. spaces)
|
||
|
Plugin 'sickill/vim-pasta' " context aware pasting
|
||
|
Plugin 'elzr/vim-json' " JSON support
|
||
|
Plugin 'davidhalter/jedi-vim' " python autocomplete
|
||
|
Plugin 'junegunn/goyo.vim' " distraction free writing
|
||
|
|
||
|
" Rust plugins
|
||
|
Plugin 'racer-rust/vim-racer' " rust autocomplete
|
||
|
Plugin 'rust-lang/rust.vim' " rust syntax, error checking, etc
|
||
|
|
||
|
" LaTeX
|
||
|
Plugin 'lervag/vimtex'
|
||
|
|
||
|
call vundle#end()
|
||
|
|
||
|
" vim: set filetype=vim ts=4 sw=4 tw=120 noet :
|