summaryrefslogtreecommitdiff
path: root/config/X
diff options
context:
space:
mode:
authorRaymaekers Luca <raymaekers.luca@gmail.com>2023-02-21 19:55:11 +0100
committerRaymaekers Luca <raymaekers.luca@gmail.com>2023-02-21 19:55:11 +0100
commitf924de2567e172779ed279195f2f31d1065c91f0 (patch)
tree27f8b35c60f87586a8443d670f7274fb92d2175f /config/X
parent840fdc15a20b9dd5ac61eb520006608baa7f51d8 (diff)
added: (xmonad) open nvim keybind
Diffstat (limited to 'config/X')
-rw-r--r--config/X/xmonad/xmonad.hs1
1 files changed, 1 insertions, 0 deletions
diff --git a/config/X/xmonad/xmonad.hs b/config/X/xmonad/xmonad.hs
index 8b7ea0c..8caf912 100644
--- a/config/X/xmonad/xmonad.hs
+++ b/config/X/xmonad/xmonad.hs
@@ -234,6 +234,7 @@ defaults = ewmh def {
}
`additionalKeysP`
[ ("M-<Return>", spawn myTerminal)
+ , ("M-n", spawn (myTerminal ++ " -e nvim"))
, ("M-<Backspace>", withFocused hide) -- N.B. this is an absurd thing to do
, ("M-0", windows $ W.greedyView $ "hid") -- N.B. this is an absurd thing to do
, ("M-u", incScreenWindowSpacing (2))