mirror of
https://github.com/folke/lazy.nvim.git
synced 2025-06-28 03:24:13 +00:00
made local normalized_extra_dev_paths a table before adding to it
This commit is contained in:
parent
1d08c7a284
commit
b5708283ad
1 changed files with 1 additions and 1 deletions
|
@ -219,7 +219,7 @@ function M.setup(opts)
|
|||
table.insert(M.options.install.colorscheme, "habamax")
|
||||
|
||||
-- normalize path options
|
||||
local normalized_extra_dev_paths
|
||||
local normalized_extra_dev_paths = {}
|
||||
if type(M.options.dev.extra_paths) == "table" then
|
||||
for k, path in ipairs(M.options.dev.extra_paths) do
|
||||
table.insert(normalized_extra_dev_paths, k, Util.norm(path))
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue