My latest neovim configuration.
I have switched the plugin manager from packer.nvim to lazy.nvim.
Lazy.nvim is a modern plugin manager for Neovim.
One of the features that has made the most impact on me:
- 🔌 Automatic lazy-loading of Lua modules and lazy-loading on events, commands, filetypes, and key mappings.
My lazy-lock.json:
- 🔒 Lockfile
lazy-lock.json
to keep track of installed plugins.
My plugin configs:
- 📁 Configurable in multiple files.
My favorite colorscheme is gruvbox:
I have switched the lsp support from coc to neovim built-in lsp, with the plugins like as follows:
- nvim-lspconfig
- It provides basic, default Nvim LSP client configurations for various LSP servers.
- mason
- Portable package manager for Neovim that runs everywhere Neovim runs.
- Easily install and manage LSP servers, DAP servers, linters, and formatters.
- mason-lspconfig
- it bridges mason with the nvim-lspconfig plugin - making it easier to use both plugins together.
- nvim-cmp
- A completion engine plugin for neovim written in Lua.
- nvim-treesitter
- The goal of nvim-treesitter is both to provide a simple and easy way to use the interface for tree-sitter in Neovim and to provide some basic functionality such as highlighting based on it.
Other configs, as follows:
This project is licensed under the MIT License. See the LICENSE file for details.