reorganize to multi file config and switch to lazy.nvim for plugins

This commit is contained in:
Squibid
2022-12-30 12:42:17 -05:00
parent 89ae2e3f0e
commit d2527bdb6b
24 changed files with 869 additions and 916 deletions

View File

@ -0,0 +1,17 @@
local lsp = require('lsp-zero')
lsp.set_preferences {
suggest_lsp_servers = true,
setup_servers_on_start = true,
set_lsp_keymaps = true,
configure_diagnostics = true,
cmp_capabilities = true,
manage_nvim_cmp = false,
call_servers = 'local',
sign_icons = {
error = 'x',
warn = '!',
hint = '?',
info = 'i'
}
}
lsp.setup()