1
Fork 0
satellite/dotfiles/neovim/lua/my/plugins/neoconf.lua
Matei Adriel 657fecfa64 Backup
2022-12-14 03:20:59 +01:00

15 lines
327 B
Lua

local M = {}
function M.setup()
require("neoconf").setup({
-- import existing settinsg from other plugins
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