aboutsummaryrefslogtreecommitdiff
path: root/vimrc
blob: ba77b989895c97ee30f0da80cae87d7b63e22514 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
" Plugins
call plug#begin('~/.vim/plugged')
Plug 'w0rp/ale' " Async linting
Plug 'tpope/vim-commentary' " Better commenting commands
Plug 'tpope/vim-fugitive' " Git integration with vim
Plug 'tpope/vim-surround' " Helps with surrounding text
Plug 'tpope/vim-repeat' " Enable Repeating of plugin maps
Plug 'morhetz/gruvbox' " Pretty colorscheme
Plug 'francoiscabrol/ranger.vim'  " Ranger integration
Plug 'ledger/vim-ledger' " Ledger plugin
Plug 'python-mode/python-mode' " Python awesomeness in vim
Plug 'chr4/nginx.vim' " nginx stuff
Plug 'saltstack/salt-vim' " Salt file syntax
Plug 'plasticboy/vim-markdown' " Markdown highlighting
Plug 'nathanaelkane/vim-indent-guides' " Creates indent lines, makes code a bit easier to read
Plug '/usr/bin/fzf' " fzf runtime path
Plug 'junegunn/fzf.vim' " fzf plugin for quick file searching

Plug 'thornycrackers/vim-options' " Custom options
call plug#end()