MyNeoVimConfig/README.md

19 lines
590 B
Markdown
Raw Normal View History

2023-07-06 07:17:32 +00:00
# My NeoVim Config
This is just a dump of my NVim config.
## Using This Config
2023-07-06 07:24:52 +00:00
1. Clone the repo into `$HOME/.config/nvim`.
2. Invoke `git sumbodule update --init --recursive --depth=1` in
`$HOME/.config/nvim`.
2023-07-06 07:17:32 +00:00
## 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.
2023-07-06 07:39:20 +00:00
`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).