Neovim configs for 2023. Hopefully they last.
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 

16 lines
355 B

-- Learn the keybindings, see :help lsp-zero-keybindings
-- Learn to configure LSP servers, see :help lsp-zero-api-showcase
local lsp = require('lsp-zero')
lsp.preset('recommended')
-- (Optional) Configure lua language server for neovim
lsp.nvim_workspace()
lsp.ensure_installed({
'tailwindcss',
'tsserver',
'texlab',
'pyright',
})
lsp.setup()