Neovim: Clean up configuration

This commit is contained in:
Marko Korhonen 2023-02-22 18:29:01 +02:00
parent 13c59cab47
commit 49d5c6c92b
5 changed files with 15 additions and 34 deletions

View file

@ -1,13 +0,0 @@
local M = {}
Opts = { mason = {}, lspconfig = { automatic_installation = true } }
M.setup = function()
require("mason").setup(Opts.mason)
end
M.lspconfig_setup = function()
require("mason-lspconfig").setup(Opts.lspconfig)
end
return M