Attempted to tidy nvim configuration

This commit is contained in:
pfych 2024-08-17 09:38:44 +10:00
parent 92bc844a10
commit b4224d0023
8 changed files with 36 additions and 25 deletions

View file

@ -1,5 +1,8 @@
local status, nvim_lsp = pcall(require, "lspconfig")
if (not status) then return end
if (not status) then
print("LSPConfig is not installed")
return
end
local protocol = require('vim.lsp.protocol')

View file

@ -1,6 +1,6 @@
local status, mason = pcall(require, "mason")
if (not status) then
print("mason is not installed")
print("Mason is not installed")
return
end

View file

@ -1,6 +1,6 @@
local status, telescope = pcall(require, "telescope")
if (not status) then
print("telescope is not installed")
print("Telescope is not installed")
return
end