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

38 lines
957 B
Lua
Raw Normal View History

---@type LazySpec
2024-05-27 10:43:55 +02:00
return {
2024-06-03 13:22:46 +02:00
{
"lukas-reineke/headlines.nvim",
enabled = false,
},
2024-05-28 11:44:41 +02:00
{
"stevearc/conform.nvim",
opts = {
formatters = {
shfmt = { prepend_args = { "-i", "4", "-ci" } },
},
},
},
2024-06-03 13:22:46 +02:00
{
"williamboman/mason.nvim",
opts = {
ensure_installed = {
"bash-language-server",
},
},
},
2024-05-27 10:43:55 +02:00
{
"neovim/nvim-lspconfig",
opts = {
2024-05-28 11:13:16 +02:00
servers = {
2024-06-10 14:34:02 +02:00
-- intelephense = {
-- init_options = {
-- storagePath = os.getenv("XDG_CACHE_HOME") .. "/intelephense",
-- globalStoragePath = os.getenv("XDG_CONFIG_HOME") .. "/intelephense",
-- licenceKey = require("lib").get_secret("intelephense"),
-- },
-- },
2024-05-27 10:43:55 +02:00
},
},
},
}