fix update issue
This commit is contained in:
parent
afbbe29751
commit
2baed3ea25
@ -2,6 +2,7 @@ return {
|
|||||||
-- Mason for managing external tools (LSP servers, linters, etc.)
|
-- Mason for managing external tools (LSP servers, linters, etc.)
|
||||||
{
|
{
|
||||||
"williamboman/mason.nvim",
|
"williamboman/mason.nvim",
|
||||||
|
version = "=1.0.1",
|
||||||
config = function()
|
config = function()
|
||||||
require("mason").setup()
|
require("mason").setup()
|
||||||
end
|
end
|
||||||
@ -9,9 +10,11 @@ return {
|
|||||||
-- Mason LSP config to bridge Mason and nvim-lspconfig
|
-- Mason LSP config to bridge Mason and nvim-lspconfig
|
||||||
{
|
{
|
||||||
"williamboman/mason-lspconfig.nvim",
|
"williamboman/mason-lspconfig.nvim",
|
||||||
|
version = "=1.0.1",
|
||||||
config = function()
|
config = function()
|
||||||
require("mason-lspconfig").setup {
|
require("mason-lspconfig").setup {
|
||||||
ensure_installed = {"pyright"}
|
ensure_installed = {"pyright"},
|
||||||
|
automatic_installation = false, -- Set to true to automatically install servers
|
||||||
}
|
}
|
||||||
end
|
end
|
||||||
},
|
},
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user