- vim8/neovim with Python 3.6+ support
pip3 install --user pynvim
(for deoplete.nvim)pip3 install --user jedi
(for deoplete-jedi)pip3 install --user flake8 pylint
(for ale Python linting)fd for CtrlP search(switched LeaderF)
- To start the transition, create your
init.vim
(user config) file:
:call mkdir(stdpath('config'), 'p')
:exe 'edit '.stdpath('config').'/init.vim'
- Add these contents to the file:
set runtimepath^=~/.vim runtimepath+=~/.vim/after
let &packpath = &runtimepath
source ~/.vimrc
- Restart Nvim, your existing Vim config will be loaded.
git clone git://github.com/sirfz/dotvim.git ~/.vim
ln -s ~/.vim/vimrc ~/.vimrc
To install all plugins, run (using vim-plug):
vim +PlugUpdate