Generated fromn Neovim-from-scratch
Make sure to remove or move your current nvim
directory
IMPORTANT Requires [Neovim v0.8.0]](https://github.com/neovim/neovim/releases). Upgrade if you're on an earlier version.
git clone https://github.com/cunderw/nvim.git ~/.config/nvim
Run nvim
and wait for the plugins to be installed
NOTE (You will notice treesitter pulling in a bunch of parsers the next time you open Neovim)
Open nvim
and enter the following:
:checkhealth
You'll probably notice you don't have support for copy/paste also that python and node haven't been setup
So let's fix that
First we'll fix copy/paste
On mac pbcopy
should be builtin
On Ubuntu
sudo apt install xsel
On Arch Linux
sudo pacman -S xsel
Next we need to install python support (node is optional)
Neovim python support
pip install pynvim
Neovim node support
npm i -g neovim
This should be handled by packer now, leaving documented for now.
Please run the following to have a better debugging and testing support for java
git clone git@github.com:microsoft/java-debug.git ~/.config/lvim/java-debug
cd ~/.config/lvim/java-debug/
./mvnw clean install
git clone git@github.com:microsoft/vscode-java-test.git ~/.config/lvim/vscode-java-test
cd ~/.config/lvim/vscode-java-test
npm install
npm run build-plugin
brew install rust
cargo install stylua
pip install beautysh
npm i -g vscode-langservers-extracted