dotfiles

my active dotfiles
git clone git://git.jakekoroman.com/dotfiles
Log | Files | Refs | README

lspconfig.lua (182B)


      1 return {
      2   'neovim/nvim-lspconfig',
      3   config = function()
      4     vim.lsp.enable('gopls')
      5     vim.lsp.enable('clangd')
      6     vim.lsp.enable('zls')
      7     vim.diagnostic.enable(false)
      8   end
      9 }