diff --git a/.README.md b/.README.md index 70ce5a2..979eb74 100644 --- a/.README.md +++ b/.README.md @@ -3,6 +3,7 @@ # Table of contents. 1. [General info.](#general-info) 2. [Load Gnome settings.](#load-gnome-settings) +3. [Navigation.](#navigation) # General info. This is my own custom config that I use on my GNU/Linux machines. Not ment to be used by anyone else. It includes: @@ -24,3 +25,10 @@ This is my own custom config that I use on my GNU/Linux machines. Not ment to be To load Gnome settings run `dconf_load`. # Navigation. +Navigation principles are shared between Gnome, Tmux and Nvim. The only difference is "Leader" key. Gnome uses `Super` key, Tmux uses `Meta (alt)` key and Nvim uses `Space`. The rest somewhat repeats itself. + +## Gnome +key|action +---|--- +`Super+q`|Move to the left workspace. +`Super+e`|Move to the right workspace. diff --git a/.config/nvim/lua/key/common.lua b/.config/nvim/lua/key/common.lua index 3e62536..6765903 100644 --- a/.config/nvim/lua/key/common.lua +++ b/.config/nvim/lua/key/common.lua @@ -1,6 +1,7 @@ require('key/rekey') -rekey_normal('.', '@:') -- repeat command. NOTE: is this the same as Q ? +rekey_normal('.', '@:') -- repeat command. +rekey_visual('.', '@:') -- repeat command. rekey_normal('zz', 'wa') -- save file. rekey_normal('z', 'wqa') -- save & quit all. rekey_normal('v', 'v') -- visual select (duplicate).