|
|
|
|
|
by btipling
4240 days ago
|
|
I'd add to that to try and start using neovim. I've switched to it on Mac without a hitch and we (Floobits) have already moved our vim plugin to use the new neovim python-client plugin for much better async behavior. Making an async plugin for NeoVim is pretty trivial, here's a clock in your status bar: https://gist.github.com/btipling/0d6faa80b24ccee5caea Note this requires +python, :he nvim-python for how to get that (involves pip install neovim) You can't do something like this clock in vim without the feed keys cursorhold hack that breaks using leader keys. Otherwise I'm still using vundle and have made 0 changes in my .vimrc other than move it all to .nvim and .nvimrc. All my plugins and vundle worked out of the box. |
|