mirror of
https://github.com/LazyVim/LazyVim.git
synced 2025-06-22 00:49:03 +02:00
fix(tailwind): nil check for filetypes_include. Fixes #1607
This commit is contained in:
parent
11c9084ec5
commit
d8f4382dd3
1 changed files with 1 additions and 1 deletions
|
@ -27,7 +27,7 @@ return {
|
|||
end, opts.filetypes)
|
||||
|
||||
-- Add additional filetypes
|
||||
vim.list_extend(opts.filetypes, opts.filetypes_include)
|
||||
vim.list_extend(opts.filetypes, opts.filetypes_include or {})
|
||||
end,
|
||||
},
|
||||
},
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue