Files
lazyfox/lua/config/hyprls.lua
Archie Fox 7f1d7f48dd Init commit
2025-07-25 13:09:33 +03:00

13 lines
337 B
Lua

-- Hyprlang LSP
vim.api.nvim_create_autocmd({ "BufEnter", "BufWinEnter" }, {
pattern = { "*.hl", "hypr*.conf" },
callback = function(event)
print(string.format("starting hyprls for %s", vim.inspect(event)))
vim.lsp.start({
name = "hyprlang",
cmd = { "hyprls" },
root_dir = vim.fn.getcwd(),
})
end,
})