2022-12-14 03:20:59 +01:00
|
|
|
local M = {}
|
|
|
|
|
|
|
|
function M.setup()
|
|
|
|
require("neoconf").setup({
|
2022-12-26 20:07:10 +01:00
|
|
|
-- import existing settings from other plugins
|
2022-12-14 03:20:59 +01:00
|
|
|
import = {
|
|
|
|
vscode = true, -- local .vscode/settings.json
|
|
|
|
coc = false, -- global/local coc-settings.json
|
|
|
|
nlsp = false -- global/local nlsp-settings.nvim json settings
|
|
|
|
},
|
|
|
|
})
|
|
|
|
end
|
|
|
|
|
|
|
|
return M
|