1
Fork 0
This commit is contained in:
Matei Adriel 2022-12-14 03:20:59 +01:00
commit 657fecfa64
16 changed files with 94 additions and 84 deletions
dotfiles/neovim/lua/my/plugins

View file

@ -0,0 +1,14 @@
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