local libmodal = require 'libmodal' -- create a new layer libmodal.layer.enter( { n = { -- normal mode mappings gg = { -- remap `gg` rhs = 'G', -- map it to `G` noremap = true, -- don't recursively map }, G = { -- remap `G` rhs = 'gg', -- map it to `gg` noremap = true -- don't recursively map } } }, '' ) -- the layer will deactivate when you press