dev #1

Merged
poslop merged 15 commits from dev into main 2026-02-19 13:14:32 -06:00
4 changed files with 13 additions and 17 deletions
Showing only changes of commit 4f8489bfdb - Show all commits

9
lsp/lua_ls.lua Normal file
View File

@@ -0,0 +1,9 @@
return {
settings = {
Lua = {
diagnostics = { globals = { "vim" } },
workspace = { checkThirdParty = false },
telemetry = { enable = false },
},
},
}

View File

@@ -12,8 +12,8 @@ if not (vim.uv or vim.loop).fs_stat(lazypath) then
os.exit(1)
end
end
vim.opt.rtp:prepend(lazypath)
vim.opt.rtp:prepend(lazypath)
vim.g.mapleader = " "
vim.g.maplocalleader = " "

View File

@@ -36,20 +36,6 @@ return {
vim.lsp.config("*", { capabilities = caps })
vim.lsp.config("lua_ls", {
settings = {
Lua = {
diagnostics = {
globals = { "vim" },
},
workspace = {
checkThirdParty = false,
},
telemetry = { enable = false },
},
},
})
vim.lsp.enable {
"lua_ls",
}

View File

@@ -1,7 +1,8 @@
### Dependencies
## Dependencies
Formatters
### **Lua**
```
lua-language-server
stylua
```