2022-01-06 08:12:53 +00:00
# My config of Neovim
Here is my config of neovim.
## Usage
2023-05-21 14:07:10 +00:00
Just clone this repository into directory `~/.config/nvim/` and start neovim. [lazy.nvim ](https://github.com/folke/lazy.nvim ) will auto install itself and other plugins at startup.
2023-05-22 01:56:32 +00:00
```
git clone < url of this repo > ~/.config/nvim
```
2023-05-23 02:49:39 +00:00
By default, this config will only include a few plugins, which suit for mataining other than editing frequently.
2023-07-21 08:29:53 +00:00
A custom config (`custom.lua`) file placed aside with `init.lua` is optional, it's content like below.
2023-05-23 02:49:39 +00:00
```
2023-07-21 08:29:53 +00:00
return {
full_feature = true, # enable all configured plugins
proxy_url = "http://localhost:8888", # setup proxy for some plugins (like treesitter)
}
2023-05-23 02:49:39 +00:00
```