tenseleyflow/ndotfiles / 495561d

Browse files

swap these right this time

Authored by mfwolffe <wolffemf@dukes.jmu.edu>
SHA
495561dc49970866220efc3b1a86853ff40946ab
Parents
66614b5
Tree
f87a92e

2 changed files

StatusFile+-
M ghostty/config 2 2
M wezterm/wezterm.lua 2 2
ghostty/configmodified
@@ -29,8 +29,8 @@ keybind = ctrl+shift+tab=previous_tab
29
 
29
 
30
 # ===== PANE/SPLIT MANAGEMENT =====
30
 # ===== PANE/SPLIT MANAGEMENT =====
31
 # Create splits
31
 # Create splits
32
-keybind = super+backslash=new_split:down
32
+keybind = super+backslash=new_split:right
33
-keybind = super+shift+backslash=new_split:right
33
+keybind = super+shift+backslash=new_split:down
34
 keybind = ctrl+shift+x=close_surface
34
 keybind = ctrl+shift+x=close_surface
35
 
35
 
36
 # Navigate panes
36
 # Navigate panes
wezterm/wezterm.luamodified
@@ -309,12 +309,12 @@ config.keys = {
309
   {
309
   {
310
     key = "\\",
310
     key = "\\",
311
     mods = "CMD",
311
     mods = "CMD",
312
-    action = wezterm.action.SplitHorizontal { domain = "CurrentPaneDomain" },
312
+    action = wezterm.action.SplitVertical { domain = "CurrentPaneDomain" },
313
   },
313
   },
314
   {
314
   {
315
     key = "\\",
315
     key = "\\",
316
     mods = "CMD|SHIFT",
316
     mods = "CMD|SHIFT",
317
-    action = wezterm.action.SplitVertical { domain = "CurrentPaneDomain" },
317
+    action = wezterm.action.SplitHorizontal { domain = "CurrentPaneDomain" },
318
   },
318
   },
319
 
319
 
320
   -- navigation..
320
   -- navigation..