diff --git a/.config/nvim/lua/plugins/extras/lang/fish.lua b/.config/nvim/lua/plugins/extras/lang/fish.lua new file mode 100644 index 00000000..c1751d6a --- /dev/null +++ b/.config/nvim/lua/plugins/extras/lang/fish.lua @@ -0,0 +1,26 @@ +return { + { + "nvim-treesitter/nvim-treesitter", + opts = { + ensure_installed = { + "fish", + }, + }, + }, + { + "neovim/nvim-lspconfig", + opts = { + servers = { + fish_lsp = {}, + }, + }, + }, + { + "williamboman/mason.nvim", + opts = { + ensure_installed = { + "fish-lsp", + }, + }, + }, +} diff --git a/.config/nvim/lua/plugins/extras/lang/web/jinja.lua b/.config/nvim/lua/plugins/extras/lang/web/jinja.lua new file mode 100644 index 00000000..a324f173 --- /dev/null +++ b/.config/nvim/lua/plugins/extras/lang/web/jinja.lua @@ -0,0 +1,12 @@ +return { + { + "neovim/nvim-lspconfig", + opts = { + servers = { + jinja_lsp = { + filetypes = { "jinja", "html" }, + }, + }, + }, + }, +}