A highly adaptable Neovim distribution. The goal is to have a minimal Neovim configuration providing a great development experience out of the box. Anvil favours building on top of native features over adding plugins. So instead of spending hours getting the basics to work or navigating through a huge mess of plugins, you can focus on customizing Neovim with features you need without being overwhelmed. Anvil is extremely lightweight, has little to no configuration of its own and only adds essential plugins that are needed to have a comfortable development experience. For most users, all that should be needed is to customize the key bindings and configure a language server.
The completions are powered by the LSP and the snippets are provided by friendly-snippets
. Additionally custom snippets can be added under snippets/${FILE_TYPE}.json
which will get loaded automatically and become available for that file type. The snippets are defined using the LSP snippet definition format and will override any matching snippet from friendly-snippets
.
Awesome StatusLine implemented in Lua, without any plugin dependencies.
- Current mode indicator.
- Current file path including unwritten state and read only indicator.
- Stats related to diagnostics (number of Errors
E
, WarningsW
, InformationI
and HintsH
). - Attached Language Servers.
- Cursor position (including selected characters and line count in visual mode).
- File indentation and encoding information.
- Buffer number information.
- File type.
- Scroll position.
All this without using any patched fonts, works great over ssh and locally and looks great everywhere!
An accent color is applied to the StatusBar depending on current mode. The accent color is only applied to the mode indicator, cursor position, buffer number and file type information.
To create a highly extensible Neovim configuration that can easily be adapted as an IDE for any programming language via LSP while staying light and as close to vanilla Neovim as possible. This distribution aims to be a non intrusive, solid base which the user can easily customize to fit their workflow needs.
Found a bug or something is broken? Have a suggestion or feature you want added? Please open an issue.
Want to contribute? Awesome! Please make a pull request.