May 12th 2026 - Interesting Finds
Enable dark mode in chrome/brave
To enable dark mode for all websites we can set the chrome://flags "Auto Dark Mode for Web Content" flag name: #enable-force-dark
Setting marks and navigating to them in vim
We can set marks with m followed by a letter or number. For example:
ma
Then to navigate to that mark we use ` followed by the letter:
`a
This is buffer specific meaning you can't navigate to marks you set in other buffers.
This also works in evil mode.
Org mode table make field blank
To make a field in a table blank we can use (org-table-blank-field).