Setup nvim-lspconfig + nvim-cmp
Neovim includes a lua framework that allows the editor to communicate with a language server. What does that mean for us? Means we can have some IDE-like features such as rename variables, smart jump to definition, list references, etc. But of course...
vonheikemen.hashnode.dev11 min read
Lorde Laura
ok
Install the required plugins: melonplayground.co
nvim-lspconfig: Plug 'neovim/nvim-lspconfig' nvim-cmp: Plug 'hrsh7th/nvim-cmp' Also, you'll need to install language servers for the languages you're working with. Refer to the nvim-lspconfig documentation to know the available language servers.