diff options
Diffstat (limited to 'init.vim')
-rw-r--r-- | init.vim | 7 |
1 files changed, 6 insertions, 1 deletions
@@ -13,7 +13,7 @@ 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 +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 @@ -33,6 +33,7 @@ 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 +Plug 'ervandew/supertab' " Tab for complete " File Type Specific Plug 'ledger/vim-ledger' " Ledger plugin @@ -51,4 +52,8 @@ let g:ale_lint_on_enter = 0 " Deoplete let g:deoplete#enable_at_startup = 1 + +" Manually set python cause NixOS +let g:deoplete#sources#jedi#python_path = '/nix/store/v4kkz8a1lf4y21dyq8qwhyr2nvl5n0i3-python3-3.8.5-env/bin/python3' +" let g:python3_host_prog = '/nix/store/v4kkz8a1lf4y21dyq8qwhyr2nvl5n0i3-python3-3.8.5-env/bin/python3' "----------------------------------------------------------------------------------------------------------------------- |