Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/diogob/nvim
My neovim configuration
https://github.com/diogob/nvim
Last synced: 19 days ago
JSON representation
My neovim configuration
- Host: GitHub
- URL: https://github.com/diogob/nvim
- Owner: diogob
- Created: 2022-11-20T05:31:52.000Z (almost 2 years ago)
- Default Branch: main
- Last Pushed: 2024-10-23T15:09:03.000Z (26 days ago)
- Last Synced: 2024-10-23T19:13:25.902Z (26 days ago)
- Language: Lua
- Size: 522 KB
- Stars: 1
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
This nvim configuration does not use any plugin manager. I took some code and ideas from [https://github.com/echasnovski/nvim](https://github.com/echasnovski/nvim)
## Adding plugins
```sh
./add-plugin.sh https://github.com/
```Then edit [lua/plugins.lua](./lua/plugins.lua) and add the code to load:
```lua
packadd_defer('')
vim.schedule(function()
end)
```If the deferred loading does not work try using `packadd` instead of `packadd_defer`.
## Updating plugins
```sh
./update-plugins.sh
```## Removing plugins
```sh
git submodule deinit pack/plugins/
```