-
https://github.com/nanotee/nvim-lua-guide is definitely your best starter guide. it's pretty much your only option for Neovim-Lua knowledge for now. LunarVim is good, I watch the main youtuber's videos allot. However, I've always believed in making the config from scratch to ensure I don't have plugins I don't need. To that end, I would break the new plugins into a few large categories:
-
CodeRabbit
CodeRabbit: AI Code Reviews for Developers. Revolutionize your code reviews with AI. CodeRabbit offers PR summaries, code walkthroughs, 1-click suggestions, and AST-based analysis. Boost productivity and code quality across all major languages with each PR.
-
This might be overwhelming if you're just starting out but you can follow this as a nice guide for the project structuring. https://github.com/ChristianChiarulli/LunarVim
-
-
This is my config written in fennel (a Lua transpiler). As you can see, I didn't convert everything because that would still require vimscript at the end of the day. If you're doing this to learn Lua it is fine, but if you're doing this to have lua based configs, I would simply wait
-
LSP Plugins: LSP is the second big pain you need to get configured, primarily by following the instructions for https://github.com/neovim/nvim-lspconfig. This takes the longest but has the biggest impact because you will start getting diagnostics out-of-the-box, and completion with a bit of extra work
-
TreeSitter: Finally, we have the new tree-sitter plugins which serve to compliment what LSP brings to the table. More research will be needed to determine when to use one or the other and in what situations, but like LSP, you should start at https://github.com/nvim-treesitter/nvim-treesitter to get all of that started
-
These and many more plugins can be found at https://github.com/rockerBOO/awesome-neovim.
-
SaaSHub
SaaSHub - Software Alternatives and Reviews. SaaSHub helps you find the best software and product alternatives
-
packer.nvim
A use-package inspired plugin manager for Neovim. Uses native packages, supports Luarocks dependencies, written in Lua, allows for expressive config
finally, I use https://github.com/wbthomason/packer.nvim for plugins, but this fits more into category 1, as any plugin manager works, but things like packer allow you to put these settings in a .lua file rather than a .vim file.
-
nvim-config
following HEAD (nightly build) neovim lua config, for Linux only, clone it to `~/.config/nvim` (by ttys3)
yes, you have it: https://github.com/ttys3/nvim-config
Related posts
-
Difference between Telescope `lsp_workspace_symbols` and `lsp_dynamic_workspace_symbols`?
-
Trying really hard to get into Neovim but I’ve had such a hard time trying to configure it!
-
Are there any examples of how to use nvim_create_autocmd?
-
Neovim 0.5 is awesome
-
lsp, pyls: how to get autocompletion and signatures of imported library