feat: add swift lang plugin

This commit is contained in:
Luke Bennett 2024-05-09 13:32:28 +01:00
parent 530e94a9fa
commit 5ab7a24aa5
No known key found for this signature in database

View file

@ -0,0 +1,10 @@
return {
-- Add Swift to treesitter for syntax highlighting
{
"nvim-treesitter/nvim-treesitter",
opts = function(_, opts)
opts.ensure_installed = opts.ensure_installed or {}
vim.list_extend(opts.ensure_installed, { "swift" })
end,
},
}