linux-config/files/dotfiles/nvim/lua/user/lsp/init.lua
Sagi Dayan 1219325293
Update
Removed all debian/ubuntu CI and tasks. Focusing on fedora.
Moved some gh_releases tasks to dnf since they are all in the fedora
repos.

Signed-off-by: Sagi Dayan <sagidayan@gmail.com>
2023-12-18 17:47:31 +02:00

9 lines
150 B
Lua

local status_ok, _ = pcall(require, "lspconfig")
if not status_ok then
return
end
require "user.lsp.mason"
require("user.lsp.handlers").setup()