Bits and Bytes

Notes from the deviant pursuits of a technical vagrant

Using Colemak Visual Mode Keybindings in Spacemacs

Overview

By default, the keybindings of visual-mode in Spacemacs (and by extension, in Vim) are tailored to the Qwerty keyboard layout. In order to remap the keybindings to be better suited for the Colemak keyboard, I used an external package as described below.

Details

Add the colemak-evil package to additional-packages in the .spacemacs file:

dotspacemacs-additional-packages '(colemak-evil)

Require the package in the user-config function in the .spacemacs file:

(defun dotspacemacs/user-config ()
  ...
  (require 'colemak-evil)
  ...
  )

Comments

comments powered by Disqus