diff options
author | Cody Hiar <cody@hiar.ca> | 2021-02-02 10:53:12 -0700 |
---|---|---|
committer | Cody Hiar <cody@hiar.ca> | 2021-02-02 10:53:12 -0700 |
commit | e91dd6453806cd157e66a70a0d4dae21a2a9a203 (patch) | |
tree | 5c55b87e67337dd0b5c3495373aa90b6b4c9464c /init.vim | |
parent | a04fce60554991b2d89bd9ba1ad4237857d20248 (diff) |
Move from vim to neovim
Diffstat (limited to 'init.vim')
-rw-r--r-- | init.vim | 54 |
1 files changed, 54 insertions, 0 deletions
diff --git a/init.vim b/init.vim new file mode 100644 index 0000000..1556676 --- /dev/null +++ b/init.vim @@ -0,0 +1,54 @@ +"----------------------------------------------------------------------------------------------------------------------- +" Plugins +"---------------------------------------------------------------------------------------------------------------------- +call plug#begin('~/.config/nvim/plugged') + +Plug 'gcmt/taboo.vim' " Rename Tabs +Plug 'jremmen/vim-ripgrep' " Use ripgrep for search +Plug 'FooSoft/vim-argwrap' " Wrap or unwrap arguments to functions +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 'Thornycrackers-Forks/nord-vim' " Pretty colorscheme +Plug 'Shougo/deoplete.nvim', { 'do': ':UpdateRemotePlugins' } " Autocomplete +"Plug 'deoplete-plugins/deoplete-jedi' " Jedi integration with deoplete +" can't find plugin right now +Plug 'rbgrouleff/bclose.vim' " Ranger dep for neovim +Plug 'francoiscabrol/ranger.vim' " Ranger integration +Plug 'nathanaelkane/vim-indent-guides' " Creates indent lines, makes code a bit easier to read +Plug 'junegunn/fzf', { 'dir': '~/.fzf', 'do': './install --all' } " Install fzf +Plug 'junegunn/fzf.vim' " fzf integration +Plug 'eapache/rainbow_parentheses.vim' " Colored Brackets +Plug 'saltstack/salt-vim' " Salt file plugin +Plug 'Thornycrackers-Forks/vim-markdown' " Markdown highlighting +Plug 'dkarter/bullets.vim' " Better bullet list handling +Plug 'reedes/vim-pencil' " Writing utility +Plug 'junegunn/goyo.vim' " Distraction Free writing +Plug 'mattn/emmet-vim' " Html expansion plugin +Plug 'majutsushi/tagbar' " Tagbar explorer +Plug 'hashivim/vim-terraform' " Terraform plugin +Plug 'godlygeek/tabular' " Formatting code +Plug 'vim-scripts/camelcasemotion' " Additional word objects +Plug 'LnL7/vim-nix' " Nix for vim +Plug 'easymotion/vim-easymotion' " faster jumping + +" File Type Specific +Plug 'ledger/vim-ledger' " Ledger plugin +Plug 'python-mode/python-mode' " Python awesomeness in vim +Plug 'chr4/nginx.vim' " nginx goodness +Plug 'Glench/Vim-Jinja2-Syntax' " Jinja Syntax + +" My custom options +Plug 'thornycrackers/vim-options' + +call plug#end() + +" These options don't work inside vim-options +let g:ale_lint_on_text_changed = 'never' +let g:ale_lint_on_enter = 0 + +" Deoplete +let g:deoplete#enable_at_startup = 1 +"----------------------------------------------------------------------------------------------------------------------- |