Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/diogob/nvim

My neovim configuration
https://github.com/diogob/nvim

Last synced: 19 days ago
JSON representation

My neovim configuration

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/
```