mirror of
https://github.com/ivuorinen/dotfiles.git
synced 2026-01-29 22:46:23 +00:00
- Comment line changes - Open trouble automagically - Do not hide gitignored files from tree - Tweaked nyancat dashboard header
33 lines
807 B
Lua
33 lines
807 B
Lua
-- customize mason plugins
|
|
return {
|
|
-- use mason-lspconfig to configure LSP installations
|
|
{
|
|
"williamboman/mason-lspconfig.nvim",
|
|
-- overrides `require("mason-lspconfig").setup(...)`
|
|
opts = {
|
|
ensure_installed = {
|
|
"diagnosticls",
|
|
},
|
|
},
|
|
},
|
|
-- use mason-null-ls to configure Formatters/Linter
|
|
-- installation for null-ls sources
|
|
{
|
|
"jay-babu/mason-null-ls.nvim",
|
|
-- overrides `require("mason-null-ls").setup(...)`
|
|
opts = {
|
|
automatic_setup = true,
|
|
automatic_installation = true,
|
|
},
|
|
},
|
|
{
|
|
"jay-babu/mason-nvim-dap.nvim",
|
|
-- overrides `require("mason-nvim-dap").setup(...)`
|
|
opts = {
|
|
automatic_installation = true,
|
|
automatic_setup = true,
|
|
ensure_installed = { "python", "php", "js", "bash" },
|
|
},
|
|
},
|
|
}
|