From f049c7a1ad7ca1313ffb3cf00d126e24d519e26e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Sergio=20La=C3=ADn?= Date: Wed, 30 Jul 2025 16:59:19 +0200 Subject: [PATCH] feat(nvim): fish and jinja extras --- .config/nvim/lua/plugins/extras/lang/fish.lua | 26 +++++++++++++++++++ .../lua/plugins/extras/lang/web/jinja.lua | 12 +++++++++ 2 files changed, 38 insertions(+) create mode 100644 .config/nvim/lua/plugins/extras/lang/fish.lua create mode 100644 .config/nvim/lua/plugins/extras/lang/web/jinja.lua 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" }, + }, + }, + }, + }, +}