30 lines
891 B
Markdown
30 lines
891 B
Markdown
# My NeoVim Config
|
|
|
|
This is just a dump of my NVim config.
|
|
|
|
## Installing This Config
|
|
|
|
1. Clone the repo into `$HOME/.config/nvim`.
|
|
2. Invoke `git submodule update --init --recursive --depth=1` in
|
|
`$HOME/.config/nvim`.
|
|
|
|
## Updating This Config
|
|
|
|
1. `git pull` or `git fetch` and merge.
|
|
2. `git submodule update --init --recursive`
|
|
3. Open nvim and invoke `:TSUpdate` to update tree-sitter.
|
|
|
|
## Enabling LSP
|
|
|
|
In NeoVim, invoke `:call loadlsp#loadlspall()`, then reload the current open
|
|
files with `:e` and LSP functionality will be enabled for the currently open
|
|
files.
|
|
|
|
`loadlsp#loadlspall()` is a custom function that can be found
|
|
[here](https://git.seodisparate.com/stephenseo/MyNeoVimConfig/src/branch/main/pack/packages/start/loadlsp/autoload/loadlsp.vim).
|
|
|
|
## Other Notes
|
|
|
|
If you want to improve/support/file-an-issue about this config, send it to:
|
|
|
|
stephen AT seodisparate DOT com
|