This commit is contained in:
2025-02-21 03:02:01 -08:00
parent 9bae49fa30
commit e216dc057c
8 changed files with 147 additions and 24 deletions

View File

@@ -74,17 +74,3 @@ vim.api.nvim_create_autocmd({ "User" }, {
end,
})
-- }}}
-- {{{ 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,
})
--}}}