-- -- Author : Dennis Eriksen -- File : lua.lua -- Created : 2024-02-15 -- return { { -- https://github.com/stevearc/conform.nvim "stevearc/conform.nvim", opts = { formatters_by_ft = { lua = { "stylua" }, }, }, }, { -- https://github.com/neovim/nvim-lspconfig "neovim/nvim-lspconfig", opts = { servers = { lua_ls = { -- don't auto-install lua-ls mason = false, -- there's no lua_ls on openbsd, so disable it there enabled = vim.loop.os_uname().sysname ~= "OpenBSD", settings = { Lua = { workspace = { checkThirdParty = false, }, codeLens = { enable = true, }, completion = { callSnippet = "Replace", }, diagnostics = { globals = { 'hs', -- global for hammerspoon 'vim', }, }, doc = { privateName = { "^_" }, }, hint = { enable = true, setType = false, paramType = true, paramName = "Disable", semicolon = "Disable", arrayIndex = "Disable", }, }, }, }, }, }, }, }