aboutsummaryrefslogblamecommitdiff
path: root/.config/nvim/lua/pluginsconfig/nvim-lspconfig.lua
blob: 746ccf68cbda35d5fa3b0be3a310f01f398cc9f2 (plain) (tree)
1
2
3
4
5
6
7
8
9
10









                                                                
require'lspconfig'.lua_ls.setup {
  settings = {
    Lua = {
      diagnostics = {
        -- Get the language server to recognize the `vim` global
        globals = {'vim'},
      },
    },
  },
}