Update lunarvim

This commit is contained in:
2026-08-04 11:54:14 +05:30
parent f039924a13
commit 17180fd76a
4 changed files with 30 additions and 14 deletions
@@ -349,6 +349,18 @@ dap.configurations.php = {
}
}
local lspconfig = require('lspconfig')
local configs = require('lspconfig.configs')
if not configs.oxlint then
configs.oxlint = {
default_config = {
cmd = { 'oxlint', '--lsp' },
filetypes = { 'javascript', 'javascriptreact', 'typescript', 'typescriptreact' },
root_dir = lspconfig.util.root_pattern('.oxlintrc.json', 'package.json', '.git'),
},
}
end
lvim.plugins = {
{
"gpanders/editorconfig.nvim",