Started main README
This commit is contained in:
parent
36acc07310
commit
acbf6a126c
3 changed files with 22 additions and 1 deletions
1
init/plugins/README.md
Normal file
1
init/plugins/README.md
Normal file
|
|
@ -0,0 +1 @@
|
|||
# Plugins Used
|
||||
63
init/plugins/plugins.vim
Normal file
63
init/plugins/plugins.vim
Normal file
|
|
@ -0,0 +1,63 @@
|
|||
" =====PLUGINS=====
|
||||
" Load the plugins
|
||||
call plug#begin('~/.config/nvim/plugged')
|
||||
|
||||
" Gutentags creates a ctags file asynchronously. This allows me to jump to
|
||||
" definitions easily.
|
||||
" Plug 'ludovicchabant/vim-gutentags', { 'commit': '31c0ead' }
|
||||
|
||||
" File navigation
|
||||
Plug 'ctrlpvim/ctrlp.vim'
|
||||
|
||||
" Git client within Vim
|
||||
Plug 'tpope/vim-fugitive'
|
||||
|
||||
" Change surrounding quotes, brackets...
|
||||
Plug 'tpope/vim-surround'
|
||||
|
||||
" Comment out lines easily
|
||||
Plug 'tpope/vim-commentary'
|
||||
|
||||
" Powerful auto-complete engine
|
||||
Plug 'neoclide/coc.nvim', {'branch': 'release'}
|
||||
|
||||
" Show ctags in sidebar, useful for navigation
|
||||
Plug 'majutsushi/tagbar'
|
||||
|
||||
" Show Git diffs in sidebar
|
||||
Plug 'airblade/vim-gitgutter'
|
||||
|
||||
" Show indentation using thin lines
|
||||
Plug 'yggdroot/indentline'
|
||||
|
||||
" Auto-indent according to PEP8 rules
|
||||
Plug 'hynek/vim-python-pep8-indent'
|
||||
|
||||
" Text object based on current indent level (e.g. Python)
|
||||
Plug 'michaeljsmith/vim-indent-object'
|
||||
|
||||
" Sidebar showing file structure
|
||||
Plug 'scrooloose/nerdtree' |
|
||||
\ Plug 'Xuyuanp/nerdtree-git-plugin'
|
||||
|
||||
" Toml syntax highlighting
|
||||
Plug 'cespare/vim-toml'
|
||||
|
||||
" Auto-bracket pairs
|
||||
Plug 'jiangmiao/auto-pairs'
|
||||
|
||||
" This plugin allows you to align text according to specified delimiters
|
||||
" e.g. this:
|
||||
" x = 5
|
||||
" alongname = 15
|
||||
" can become this:
|
||||
" x = 15
|
||||
" alongname = 15
|
||||
Plug 'godlygeek/tabular'
|
||||
|
||||
" Some auto-complete for haskell
|
||||
Plug 'neovimhaskell/haskell-vim'
|
||||
|
||||
Plug 'vmchale/ion-vim'
|
||||
|
||||
call plug#end()
|
||||
Reference in a new issue