Ensure EDITOR and similar variables work with EXWM setup

After some confusion about my `emacsclient` is currently working as
expected. Perhaps it always did. I had `emacs --daemon` in my
`~/.xsessionrc.shared` for awhile, which may have confused
`emacsclient`. Whatever happened, I'm glad it's working now.
This commit is contained in:
William Carroll 2020-01-20 22:02:20 +00:00
parent b843e0f8f6
commit 16dfa55df7
2 changed files with 2 additions and 6 deletions

View file

@ -88,8 +88,7 @@ abbr --add p xclip -selection clipboard -o
abbr --add cp cp_dwim abbr --add cp cp_dwim
abbr --add 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." abbr --add 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."
# TODO: Ensure this works as expect with current EXWM setup. abbr --add e emacsclient
abbr --add e emacsclient --no-wait --create-frame
abbr --add cat bat --theme=TwoDark abbr --add cat bat --theme=TwoDark
# TODO: Support this once `fasd` works. # TODO: Support this once `fasd` works.
@ -282,9 +281,6 @@ abbr --add el e ~/variables.zsh
abbr --add ex e ~/.Xresources abbr --add ex e ~/.Xresources
abbr --add em e ~/.tmux.conf abbr --add em e ~/.tmux.conf
abbr --add er e ~/Dropbox/dotfiles/README.md abbr --add er e ~/Dropbox/dotfiles/README.md
# TODO: consider DRYing this up with `e`. Unfortunately, `sudo` won't support
# aliases.
abbr --add en sudo ALTERNATE_EDITOR=nvim emacsclient --no-wait --create-frame /etc/nixos/configuration.nix
# Couple the s* aliases to the <leader>s* kbds in vim. # Couple the s* aliases to the <leader>s* kbds in vim.
abbr --add sz source ~/.zshrc abbr --add sz source ~/.zshrc

View file

@ -22,7 +22,7 @@ fi
export BROWSER=google-chrome-stable export BROWSER=google-chrome-stable
export TERMINAL=alacritty # temporary; change this back to `st` export TERMINAL=alacritty # temporary; change this back to `st`
export VISUAL=emacsclient export VISUAL=emacsclient
export EDITOR=$VISUAL export EDITOR=emacsclient
export ALTERNATE_EDITOR=nvim export ALTERNATE_EDITOR=nvim
# Rust integration. Keep here so programs like Emacs can read this value. # Rust integration. Keep here so programs like Emacs can read this value.