mirror of
https://github.com/pratiktri/dotfiles.git
synced 2026-02-04 08:41:43 +05:30
- Add more configs to make VIM a lot more like an IDE. - Removed unnecessary configs. - Collapsed some settings together. - Split configs to facilitate NVIM migration. - Added spell files to git. - Added .swp VIM files to gitignore. - Configured NVIM to pick VIM selected configurations.
29 lines
1.2 KiB
VimL
29 lines
1.2 KiB
VimL
""""""""""""""""""""""""""""""""
|
|
"
|
|
" Plugins
|
|
"
|
|
"""""""""""""""""""""""""""""""""
|
|
" This being the 1st line in the config file,
|
|
" makes it possible to configure plugins any place in the file.
|
|
call plug#begin('~/.vim/plugged')
|
|
Plug 'tpope/vim-fugitive' "Fugitive Vim GitHub Wrapper
|
|
Plug 'tpope/vim-surround' "Surround Plugin
|
|
Plug 'tpope/vim-repeat' "Repeat for the surround plugin
|
|
Plug 'tpope/vim-commentary' "Comments Plugin
|
|
Plug 'tpope/vim-sensible' "Sensible options
|
|
Plug 'rstacruz/vim-closer' "Auto-close brackets
|
|
Plug 'machakann/vim-highlightedyank' "Highlight Yank
|
|
Plug 'dbakker/vim-paragraph-motion' "Paragraph Motion
|
|
Plug 'airblade/vim-gitgutter' "Git in the left-side gutter
|
|
Plug 'junegunn/rainbow_parentheses.vim' "Rainbow parenthesis
|
|
Plug 'easymotion/vim-easymotion' "Easy Motion to quickly jump across the buffer
|
|
Plug 'preservim/nerdtree' "Nerd Tree
|
|
"------------Style Plugins------------"
|
|
" Status Styles
|
|
Plug 'itchyny/lightline.vim'
|
|
Plug 'challenger-deep-theme/vim', { 'as': 'challenger-deep' } "ColorScheme - Challenger-deep
|
|
Plug 'cocopon/iceberg.vim' "Color Scheme - Iceberg
|
|
Plug 'tyrannicaltoucan/vim-deep-space' "Color Scheme - Deep-space
|
|
call plug#end()
|
|
|