dotfiles/.config/nvim/lua/plugins/extras/lang/fish.lua
2025-07-30 16:59:19 +02:00

26 lines
355 B
Lua

return {
{
"nvim-treesitter/nvim-treesitter",
opts = {
ensure_installed = {
"fish",
},
},
},
{
"neovim/nvim-lspconfig",
opts = {
servers = {
fish_lsp = {},
},
},
},
{
"williamboman/mason.nvim",
opts = {
ensure_installed = {
"fish-lsp",
},
},
},
}