mirror of
https://github.com/aminnairi/dotfiles.git
synced 2026-09-14 12:12:13 +02:00
27 lines
758 B
Lua
27 lines
758 B
Lua
return {
|
|
"mason-org/mason.nvim",
|
|
opts = {
|
|
ensure_installed = {
|
|
-- LSP Servers
|
|
"typescript-language-server", -- TypeScript/JavaScript LSP
|
|
"eslint-lsp", -- ESLint LSP for linting
|
|
"tailwindcss-language-server", -- Tailwind CSS LSP
|
|
"css-lsp", -- CSS LSP
|
|
"html-lsp", -- HTML LSP
|
|
"emmet-ls", -- Emmet for HTML/CSS abbreviations
|
|
"json-lsp", -- JSON LSP
|
|
"lua-language-server", -- Lua LSP for Neovim config
|
|
|
|
-- Linters
|
|
"eslint_d", -- Fast ESLint daemon
|
|
"stylelint", -- CSS/SCSS/Less linter
|
|
|
|
-- Additional Tools
|
|
"shellcheck", -- Shell script linter
|
|
"shfmt", -- Shell script formatter
|
|
"hadolint", -- Dockerfile linter
|
|
"yamllint", -- YAML linter
|
|
},
|
|
},
|
|
}
|