1
0
mirror of https://github.com/dcarrillo/dotfiles.git synced 2024-07-07 10:03:52 +00:00
dotfiles/.config/nvim/lua/user/lsp/init.lua

11 lines
228 B
Lua
Raw Normal View History

2022-10-12 14:02:54 +00:00
local status_ok, win = pcall(require, "lspconfig.ui.windows")
2022-10-01 11:46:18 +00:00
if not status_ok then
return
end
2022-10-08 10:44:11 +00:00
require("user.lsp.mason")
2022-10-01 11:46:18 +00:00
require("user.lsp.handlers").setup()
require("user.lsp.null-ls")
2022-10-12 14:02:54 +00:00
2022-10-12 15:07:14 +00:00
win.default_options.border = "rounded"