Adding .luarc.json and cleaning up plugins.lua

This commit is contained in:
Lord Of Nougate 2024-05-17 20:28:40 +02:00
parent 69e87e7d77
commit 9406f6d742
2 changed files with 15 additions and 3 deletions

13
.luarc.json Executable file
View File

@ -0,0 +1,13 @@
{
"runtime.version": "LuaJIT",
"runtime.path": [
"lua/?.lua",
"lua/?/init.lua"
],
"diagnostics.globals": ["vim"],
"workspace.checkThirdParty": false,
"workspace.library": [
"$VIMRUNTIME",
"./lua"
]
}

View File

@ -97,12 +97,11 @@ return {
-- lsp
{
'Exafunction/codeium.vim',
event = 'BufEnter'
"Exafunction/codeium.vim",
event = "BufEnter"
},
{"williamboman/mason.nvim",
lazy = false,
config = function()
require("mason").setup({})
end