chore: Added theme change script to raycast and fix a bunch of theme related stuff

This commit is contained in:
2024-02-13 02:31:12 +00:00
parent 52c8d9ccd9
commit a7a9cd1848
27 changed files with 442 additions and 490 deletions

View File

@@ -27,6 +27,9 @@ vim.opt.expandtab = true
--quickfix keybinds
vim.keymap.set("n", "<C-k>", "<cmd>cnext<CR>zz")
vim.keymap.set("n", "<C-j>", "<cmd>cprev<CR>zz")
--buffer keybinds
vim.keymap.set("n", "<A-h>", "<cmd>bp<CR>")
vim.keymap.set("n", "<A-l>", "<cmd>bn<CR>")
--Undo dir
vim.opt.undodir = os.getenv("HOME") .. "/.vim/undodir"
vim.opt.undofile = true