Safe loading mason.
parent
0ad0eb46c7
commit
a6875cccd2
|
@ -23,7 +23,15 @@ Plug 'mfussenegger/nvim-jdtls'
|
|||
|
||||
vim.call('plug#end')
|
||||
|
||||
require('mason').setup()
|
||||
|
||||
local ok, res = pcall(require, 'mason')
|
||||
|
||||
if not ok then
|
||||
vim.notify('Couldn load mason', vim.log.levels.ERROR)
|
||||
vim.notify(res, vim.log.levels.ERROR)
|
||||
else
|
||||
res.setup()
|
||||
end
|
||||
|
||||
-- local executable = vim.fn[':
|
||||
|
||||
|
|
Loading…
Reference in New Issue