@MonaApp Can we have an option to use VIM-style movement hotkeys (H, J, K, L)?
@com Yes since it's macOS, you can modify them in the System Settings.
@MonaApp Oh, I had thought changing keyboard shortcuts in keyboard settings would require using a modifier like command, but no?

@MonaApp This works! Thanks for the tip.

```
defaults write -app 'Mona' NSUserKeyEquivalents -dict-add 'Up' 'k';
defaults write -app 'Mona' NSUserKeyEquivalents -dict-add 'Down' 'j';
defaults write -app 'Mona' NSUserKeyEquivalents -dict-add 'Back' 'h';
defaults write -app 'Mona' NSUserKeyEquivalents -dict-add 'Forward' 'l';
```