mirror of
https://github.com/ViViDboarder/vim-settings.git
synced 2024-11-14 17:26:50 +00:00
40b88432f8
Might end up using this to install LSPs. Just playing with it for now.
13 lines
306 B
Lua
13 lines
306 B
Lua
local utils = require("utils")
|
|
local lsp_config = require("plugins.lsp")
|
|
|
|
-- Configure my various lsp stuffs
|
|
lsp_config.config_null_ls()
|
|
lsp_config.config_lsp_intaller()
|
|
lsp_config.config_lsp()
|
|
lsp_config.config_lsp_ui()
|
|
|
|
if utils.is_plugin_loaded("lspsaga.nvim") then
|
|
lsp_config.config_lsp_saga()
|
|
end
|