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...
This commit is contained in:
William Carroll 2019-03-21 13:57:15 +00:00
parent b1275671a8
commit cf39cf760a
3 changed files with 6 additions and 3 deletions

View file

@ -41,13 +41,13 @@ floating_modifier $mod
# Vertical # Vertical
bindsym $mod+Ctrl+t split v; exec st bindsym $mod+Ctrl+t split v; exec st
bindsym $mod+Ctrl+Return 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+c split v; exec google-chrome
bindsym $mod+Ctrl+s split v; exec spotify bindsym $mod+Ctrl+s split v; exec spotify
# Horizontal # Horizontal
bindsym $mod+Ctrl+Shift+t split h; exec st bindsym $mod+Ctrl+Shift+t split h; exec st
bindsym $mod+Ctrl+Shift+Return 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+c split h; exec google-chrome
bindsym $mod+Ctrl+Shift+s split h; exec spotify bindsym $mod+Ctrl+Shift+s split h; exec spotify

View file

@ -16,6 +16,9 @@ xsetroot -solid "#333333"
# This might be better for SSH. # This might be better for SSH.
tmux new -d -s main tmux new -d -s main
# Start the Emacs server
emacs --daemon
# set kbds # set kbds
xmodmap -e 'remove Lock = Caps_Lock' xmodmap -e 'remove Lock = Caps_Lock'
xmodmap -e 'keysym Caps_Lock = Escape' xmodmap -e 'keysym Caps_Lock = Escape'

View file

@ -20,7 +20,7 @@ alias ls="exa"
alias ll="exa -l" alias ll="exa -l"
alias la="exa -la" alias la="exa -la"
alias lorem="echo Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum." alias lorem="echo Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum."
alias e="emacsclient --no-wait" alias e="emacsclient --no-wait --create-frame"
alias cat="bat" alias cat="bat"
alias j='fasd_cd -d' # to emulate autojump; my muscle memory is hardened here alias j='fasd_cd -d' # to emulate autojump; my muscle memory is hardened here
alias vim=nvim # prefer neovim to vim alias vim=nvim # prefer neovim to vim