I’m interested in finding out which programming languages you incorporate while working with Neovim. For example, do you prefer scripting languages like Lua or Python, or perhaps you use alternatives such as JavaScript or other languages for configuring your editor? Your insights regarding how you set up your development environment and the benefits or challenges you have encountered using these languages would be very helpful. Please share details about your workflow, custom configurations, and any personal experiences you have regarding your language choices while using Neovim.
hey, i often mix lua with a bit of pythn for my neovim setup. i find it fun to experiemnt with different configs. has anyone tried merging javasript in their setup or got any cool tricks? would love to swap ideas!
I have been using Lua extensively for my Neovim configuration as it offers a performance boost and greater control over customization. In addition to Lua, I integrate Python for plugin extensions and scripting tasks because of its versatility and the availability of numerous libraries. My experience also includes experimenting with shell scripting to handle some lower-level system interactions, though it requires extra care for error handling. Overall, working with multiple languages in Neovim has enhanced my workflow, but it does demand a structured approach to keep configurations organized and maintainable.
hey, i mostly use lua coz its simple and powerful. tried python bits for some plugins but js i avoid, seems kinda buggy. nvim setup feels right using a combo, though flexi with python sometimes gets tricky.