June 1st 2026 - Things I Worked On
Added blogging workspace
I wanted a quick way to create all the tabs with the files opened for working on my blog so I added this function:
(defun my/create-blogging-workspace () "Create my blogging workspace." (interactive) (delete-other-windows) (tab-close-other) (my/open-journal-file) (tab-new) (find-file "~/website/blog/index.org") (tab-new) (scratch-buffer) (tab-previous) (tab-previous)) (evil-leader/set-key "p 1" 'my/create-blogging-workspace)
Added using arrows to switch between windows
Had to remove this because it breaks my keybindings for changing org timestamps and cylcing through TODO labels but it could be useful for someone else:
(when (fboundp 'windmove-default-keybindings) (windmove-default-keybindings))