aboutsummaryrefslogtreecommitdiff
path: root/common/nvim/after/ftplugin/lua.lua.bak
diff options
context:
space:
mode:
authorsrdusr <trevorgray@srdusr.com>2025-09-24 02:56:53 +0200
committersrdusr <trevorgray@srdusr.com>2025-09-24 02:56:53 +0200
commit0f6cee92221dc517bd756083e260dd9373851b82 (patch)
treec6d929fa5832d17a2d1fe3c85744bae7621ed447 /common/nvim/after/ftplugin/lua.lua.bak
parent3cf613ec7c90ab4933728b0f19e49b0c955c17bb (diff)
downloaddotfiles-0f6cee92221dc517bd756083e260dd9373851b82.tar.gz
dotfiles-0f6cee92221dc517bd756083e260dd9373851b82.zip
Moved files to common/
Diffstat (limited to 'common/nvim/after/ftplugin/lua.lua.bak')
-rwxr-xr-xcommon/nvim/after/ftplugin/lua.lua.bak35
1 files changed, 0 insertions, 35 deletions
diff --git a/common/nvim/after/ftplugin/lua.lua.bak b/common/nvim/after/ftplugin/lua.lua.bak
deleted file mode 100755
index fe9587b..0000000
--- a/common/nvim/after/ftplugin/lua.lua.bak
+++ /dev/null
@@ -1,35 +0,0 @@
-local lspconfig = require("lspconfig")
-
-if lspconfig.lua_ls then
- lspconfig.lua_ls.setup({
- settings = {
- Lua = {
- diagnostics = {
- -- This is the Lua table for diagnostics settings
- globals = { "vim", "use", "_G", "packer_plugins", "P" },
- disable = {
- "undefined-global",
- "lowercase-global",
- "unused-local",
- "unused-vararg",
- "trailing-space"
- },
- },
- workspace = {
- -- Points the language server to Neovim's runtime files for auto-completion
- library = {
- --vim.api.nvim_get_runtime_path(),
- --checkThirdParty = false,
- vim.env.VIMRUNTIME,
- -- Depending on the usage, you might want to add additional paths here.
- "${3rd}/luv/library",
- "${3rd}/busted/library",
- },
- },
- telemetry = {
- enable = false,
- },
- },
- },
- })
-end