- (Linux)
find . -mindepth 1 -maxdepth 1 -exec mv -t.. -- {} +
- (Mac)
find . -mindepth 1 -maxdepth 1 -execdir mv '{}' .. \;
pip install pylon proselint flake8 pynvim neovim neovim-remote jedi
apt install ctags xdotool
Install neovim, from latest stable release or from brew if you use macOs. I strongly suggest the use of a smart terminal as iTerm, it will be easier to setup colors.
Example: install neovim with appimage
curl -LO https://github.com/neovim/neovim/releases/latest/download/nvim.appimage
chmod u+x nvim.appimage
./nvim.appimage
- Once you open nvim for the first time, PlugInstall will automatically install all the plugins.
- If during the plugins installation something fails, just run again the
:PlugInstall
command. - [Important] run
:UpdateRemotePlugins
to update the plugin manifest and register remote plugin commands and functions.
- Latest tmux is necessary to have right term colors http://witkowskibartosz.com/blog/update-your-tmux-to-latest-version.html
- how to test colors in your terminal: https://gist.github.com/XVilka/8346728