feat: Adds clipse clipboard history, removes macos specific scripts, begin creating install scripts.

This commit is contained in:
2025-09-25 10:08:00 -04:00
parent 6107a658bb
commit 73d4da7106
19 changed files with 280 additions and 466 deletions

View File

@@ -14,6 +14,19 @@ createCmd("BufEnter", {
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,
})
-- Markdown
-- createCmd("BufWritePost", {
-- pattern = { "*.md", "*.markdown" },