cunderw/nvim

github github
pluginpreconfigured-configuration
stars 10
issues 0
subscribers 1
forks 0
CREATED

2022-08-18

UPDATED

30 days ago


My Neovim Config

Generated fromn Neovim-from-scratch

Try out this config

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)

Get healthy

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
    

Java Development Setup

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

Lua

brew install rust
cargo install stylua

Bash/Zsh

pip install beautysh

Typescript / Javascript

npm i -g vscode-langservers-extracted