changed global hotkey for launching vim to launching nvim

This commit is contained in:
paul-loedige
2021-04-27 08:21:34 +02:00
parent e9141b2f01
commit 8e989c1163
+2 -2
View File
@@ -36,7 +36,7 @@ keys = [
Key([mod],"f", lazy.spawn("firefox"),desc="Launch firefox"), Key([mod],"f", lazy.spawn("firefox"),desc="Launch firefox"),
Key([mod],"e", lazy.spawn("pcmanfm"),desc="Launch pcmanfm"), Key([mod],"e", lazy.spawn("pcmanfm"),desc="Launch pcmanfm"),
Key([mod],"c", lazy.spawn("code"),desc="Launch visual studio code"), Key([mod],"c", lazy.spawn("code"),desc="Launch visual studio code"),
Key([mod],"v", lazy.spawn(term + " -e vim"),desc="Launch Vim"), Key([mod],"v", lazy.spawn(term + " -e nvim"),desc="Launch NeoVim"),
Key([mod, "shift"],"s", lazy.spawn('gscreenshot -s -o -f /tmp/screenshots'),desc="take a screenshot"), Key([mod, "shift"],"s", lazy.spawn('gscreenshot -s -o -f /tmp/screenshots'),desc="take a screenshot"),
# Toggle between different layouts as defined below # Toggle between different layouts as defined below
@@ -73,4 +73,4 @@ mouse = [
Drag([mod], "Button3", lazy.window.set_size_floating(), Drag([mod], "Button3", lazy.window.set_size_floating(),
start=lazy.window.get_size()), start=lazy.window.get_size()),
Click([mod], "Button2", lazy.window.bring_to_front()) Click([mod], "Button2", lazy.window.bring_to_front())
] ]