diff options
author | William Carroll <wpcarro@gmail.com> | 2019-03-21T13·57+0000 |
---|---|---|
committer | William Carroll <wpcarro@gmail.com> | 2019-03-21T13·57+0000 |
commit | cf39cf760ac97dd3a8402991067f0c4184941c6e (patch) | |
tree | 628df1e6e1e207d8517d00c277285983c3ed4cd2 /configs/shared/misc/.config | |
parent | b1275671a80d6ec2f1acb6f98b79daeb19729e5c (diff) |
Prefer Emacs client-server setup
This change affects: - alias e - i3 KBDs - .xsessionrc It will be interesting to see how this works over SSH. In theory, the ALTERNATE_EDITOR variable should kick in and `vim` should be used. Time will tell if this is the preferred setup. Until then...
Diffstat (limited to 'configs/shared/misc/.config')
-rw-r--r-- | configs/shared/misc/.config/i3/config | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/configs/shared/misc/.config/i3/config b/configs/shared/misc/.config/i3/config index ac41de318d04..0756f344cf9b 100644 --- a/configs/shared/misc/.config/i3/config +++ b/configs/shared/misc/.config/i3/config @@ -41,13 +41,13 @@ floating_modifier $mod # Vertical bindsym $mod+Ctrl+t split v; exec st bindsym $mod+Ctrl+Return split v; exec st -bindsym $mod+Ctrl+e split v; exec emacs +bindsym $mod+Ctrl+e split v; exec emacsclient --create-frame ~/programming bindsym $mod+Ctrl+c split v; exec google-chrome bindsym $mod+Ctrl+s split v; exec spotify # Horizontal bindsym $mod+Ctrl+Shift+t split h; exec st bindsym $mod+Ctrl+Shift+Return split h; exec st -bindsym $mod+Ctrl+Shift+e split h; exec emacs +bindsym $mod+Ctrl+Shift+e split h; exec emacsclient --create-frame ~/programming bindsym $mod+Ctrl+Shift+c split h; exec google-chrome bindsym $mod+Ctrl+Shift+s split h; exec spotify |