You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
my-nvim-lua/lua/custom/plugins/configs/projectconfig.lua

19 lines
361 B
Lua

local ok, pconfig = pcall(require, "nvim-projectconfig")
if not ok then
vim.notify("missing module nvim-projectconfig", vim.log.levels.WARN)
return false
end
local M = {}
local config = {
project_dir = "~/.config/nvim-project-confs/", -- trailing slash important
silent = false,
}
M.setup = function()
pconfig.setup(config)
end
return M