1
0
Fork 0
dotfiles/.config/nvim/lua/plugins/language.lua

37 lines
957 B
Lua

---@type LazySpec
return {
{
"lukas-reineke/headlines.nvim",
enabled = false,
},
{
"stevearc/conform.nvim",
opts = {
formatters = {
shfmt = { prepend_args = { "-i", "4", "-ci" } },
},
},
},
{
"williamboman/mason.nvim",
opts = {
ensure_installed = {
"bash-language-server",
},
},
},
{
"neovim/nvim-lspconfig",
opts = {
servers = {
-- intelephense = {
-- init_options = {
-- storagePath = os.getenv("XDG_CACHE_HOME") .. "/intelephense",
-- globalStoragePath = os.getenv("XDG_CONFIG_HOME") .. "/intelephense",
-- licenceKey = require("lib").get_secret("intelephense"),
-- },
-- },
},
},
},
}