mirror of
https://github.com/js0ny/dotfiles.git
synced 2025-12-21 08:43:00 +00:00
* Neovim: Backup original LazyVim setup to .config/nvim.lazy.d * Neovim: Currently done with basic completions and LSP * Git: Always use ssh to connect github remote * Zsh: Add more antidots config
21 lines
481 B
Lua
21 lines
481 B
Lua
|
|
return {
|
|
{ import = "plugins.mod.lspconfig" },
|
|
{ "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")
|
|
|
|
mason_lspconfig.setup({
|
|
ensure_installed = servers,
|
|
})
|
|
end
|
|
},
|
|
}
|