mirror of
https://github.com/pratiktri/dotfiles.git
synced 2026-02-04 16:41:43 +05:30
- New plugins and themes added to vim - Copied over some useful plugins to ideavimrc - Added docker and autosuggest plugins to zsh
56 lines
1.1 KiB
Plaintext
56 lines
1.1 KiB
Plaintext
call plug#begin('~/.vim/plugged')
|
|
|
|
"Fugitive Vim Github Wrapper
|
|
Plug 'tpope/vim-fugitive'
|
|
|
|
" Surround Plugin
|
|
Plug 'tpope/vim-surround'
|
|
|
|
" Repeat for the surround plugin
|
|
Plug 'tpope/vim-repeat'
|
|
|
|
" Surround Plugin
|
|
Plug 'tpope/vim-commentary'
|
|
|
|
" Sensible options
|
|
Plug 'tpope/vim-sensible'
|
|
|
|
" Auto-close brackets
|
|
Plug 'rstacruz/vim-closer'
|
|
|
|
" Highlight Yank
|
|
Plug 'machakann/vim-highlightedyank'
|
|
|
|
" Paragraph Motion
|
|
Plug 'dbakker/vim-paragraph-motion'
|
|
|
|
" Quick Scope
|
|
" Plug 'unblevable/quick-scope'
|
|
|
|
" Git in the left-side gutter
|
|
Plug 'airblade/vim-gitgutter'
|
|
|
|
" Rainbow parenthesis
|
|
Plug 'junegunn/rainbow_parentheses.vim'
|
|
|
|
" Highlight trailing spaces - remove them all with :FixWhitespace
|
|
Plug 'bronson/vim-trailing-whitespace'
|
|
|
|
"------------Look and Feel------------"
|
|
" Status Styles
|
|
Plug 'itchyny/lightline.vim'
|
|
|
|
" ColorScheme - Challenger-deep
|
|
Plug 'challenger-deep-theme/vim', { 'as': 'challenger-deep' }
|
|
|
|
" Color Scheme - Iceberg
|
|
Plug 'cocopon/iceberg.vim'
|
|
|
|
" Color Scheme - Gotham
|
|
Plug 'whatyouhide/vim-gotham'
|
|
|
|
" Color Scheme - Deep-space
|
|
Plug 'tyrannicaltoucan/vim-deep-space'
|
|
|
|
call plug#end()
|