Attempted to tidy nvim configuration
This commit is contained in:
parent
92bc844a10
commit
b4224d0023
8 changed files with 36 additions and 25 deletions
|
@ -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')
|
||||
|
||||
|
|
|
@ -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
|
||||
|
||||
|
|
|
@ -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
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue