vimtricks.wiki Concise Vim tricks, one at a time.

How do you configure the built-in LSP client in Neovim?

Answer

require('lspconfig').pyright.setup{}

Explanation

Use nvim-lspconfig to configure language servers. Each server has a setup function. Provides diagnostics, go-to-definition, completion, and more.

Next

How do I visually select a double-quoted string including the quotes themselves?