mirror of
https://github.com/js0ny/dotfiles.git
synced 2025-12-21 16:53:00 +00:00
32 lines
816 B
Lua
32 lines
816 B
Lua
|
|
return {
|
|
{ import = "plugins.mod.lspconfig" },
|
|
{ "MeanderingProgrammer/render-markdown.nvim" },
|
|
-- {
|
|
-- "OXY2DEV/markview.nvim",
|
|
-- lazy = false, -- Recommended
|
|
-- -- ft = "markdown" -- If you decide to lazy-load anyway
|
|
--
|
|
-- dependencies = {
|
|
-- "nvim-treesitter/nvim-treesitter",
|
|
-- "nvim-tree/nvim-web-devicons"
|
|
-- }
|
|
-- },
|
|
{ "williamboman/mason.nvim", config = true },
|
|
{
|
|
"williamboman/mason-lspconfig.nvim",
|
|
lazy = false,
|
|
dependencies = {
|
|
{ "williamboman/mason.nvim" },
|
|
{ "neovim/nvim-lspconfig" },
|
|
},
|
|
config = function()
|
|
local mason_lspconfig = require("mason-lspconfig")
|
|
local servers = require("config.servers").servers
|
|
|
|
mason_lspconfig.setup({
|
|
ensure_installed = servers,
|
|
})
|
|
end
|
|
},
|
|
}
|