+
+;; Use a different spell checker, always
+(add-hook 'emacs-startup-hook #'global-jinx-mode)
+(keymap-global-set "M-$" #'jinx-correct)
+
+;; Bind embark
+(keymap-global-set "C-." #'embark-act)
+(keymap-global-set "C-;" #'embark-dwim)
+
+;; Change default bindings to consult- ones
+(keymap-set ctl-x-map "b" #'consult-buffer)
+(global-set-key (kbd "M-y") 'consult-yank-pop)
+
+;; Configure `world-clock'
+
+(with-eval-after-load 'time
+ (setq zoneinfo-style-world-list '(("Europe/Brussels" "Leuven")))
+ (add-to-list 'zoneinfo-style-world-list '("Australia/Perth" "Perth")))
+
+