LunarVim/README.md

77 lines
1.8 KiB
Markdown
Raw Normal View History

2021-03-15 02:51:54 +01:00
# NVCode
If you are looking for my old configs checkout the two snapshot branches on this repo, there is one for CoC and one for Native LSP
2021-03-15 03:25:28 +01:00
## Install in one command
**WARNING** Still very experimental will not work without some configuation
2021-03-17 08:35:39 +01:00
2021-03-16 03:04:54 +01:00
```bash
2021-03-15 03:29:12 +01:00
bash <(curl -s https://raw.githubusercontent.com/ChristianChiarulli/nvcode/master/utils/installer/install-nv-code.sh)
```
2021-03-15 03:25:28 +01:00
2021-03-15 03:38:05 +01:00
After running you will have access to the `nv` command, this WILL NOT overwite your nvim config. So you can have both installed at the same time
2021-03-15 03:25:28 +01:00
## Get the latest version of Neovim
```bash
cd ~
sudo rm -r neovim
git clone https://github.com/neovim/neovim
cd neovim
sudo make CMAKE_BUILD_TYPE=Release install
cd ~
sudo rm -r neovim
```
2021-03-15 17:58:57 +01:00
## VSCode support
After installing the Neovim extension in VSCode
Point the nvim path to your `nvim` binary
Point your `init.vim` path to:
```vim
$HOME/.config/nvim/lua/nv-vscode/init.vim
```
2021-03-15 18:00:35 +01:00
or if you are using this config alongside your own:
```vim
$HOME/.config/nvim/lua/nv-vscode/init.vim
```
## efm server is slow on close
Install the latest with:
```
go get github.com/mattn/efm-langserver@HEAD
```
2021-03-15 02:51:54 +01:00
## TODO
2021-03-15 16:54:53 +01:00
**HIGH PRIORITY**
2021-03-16 14:10:38 +01:00
- formatting using efm server for prettier/eslint
2021-03-18 20:00:14 +01:00
- list all binaries needed for functionality
2021-03-17 08:23:23 +01:00
- learn what opt is
2021-03-18 07:08:38 +01:00
- better install script, support both nvim and nvcode paths
- learn nvim-dap in depth
2021-03-17 18:40:42 +01:00
- snippet support
2021-03-18 05:30:14 +01:00
- for vsnip :h vim-vsnip, also figure out what integr does
2021-03-15 16:54:53 +01:00
**LOW PRIORITY**
2021-03-18 20:00:14 +01:00
- potentially switch to dashboard
2021-03-16 04:21:59 +01:00
- make java code actions prettier
2021-03-18 05:30:14 +01:00
- figure out how to customize java formatting
2021-03-16 04:21:59 +01:00
- setup junit tests for java
2021-03-16 03:28:45 +01:00
- neovim lightbulb config
2021-03-15 18:03:12 +01:00
- better autoimport
2021-03-18 05:30:14 +01:00
- keep and eye on indent guides plugin for thin lines
2021-03-15 08:48:39 +01:00
- look into autoinstall lsp
2021-03-15 15:41:54 +01:00
- get logo
2021-03-15 15:55:21 +01:00
- configure neogit
2021-03-17 03:06:38 +01:00
- toggle virtual text diagnostics
2021-03-18 05:30:14 +01:00
- move language servers not installed with npm to neovim local share location