feat(nvim): fish and jinja extras

This commit is contained in:
Sergio Laín 2025-07-30 16:59:19 +02:00
parent 201bd16d02
commit f049c7a1ad
No known key found for this signature in database
GPG key ID: 51BB28D8B42FB438
2 changed files with 38 additions and 0 deletions

View file

@ -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",
},
},
},
}

View file

@ -0,0 +1,12 @@
return {
{
"neovim/nvim-lspconfig",
opts = {
servers = {
jinja_lsp = {
filetypes = { "jinja", "html" },
},
},
},
},
}