aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--Shell/.zprofile2
-rw-r--r--Shell/.zshrc24
-rw-r--r--XServer/.xinitrc2
3 files changed, 14 insertions, 14 deletions
diff --git a/Shell/.zprofile b/Shell/.zprofile
index be3e508..978c0a3 100644
--- a/Shell/.zprofile
+++ b/Shell/.zprofile
@@ -1,7 +1,7 @@
# .zprofile -*- mode: sh; lexical-binding: t; -*-
# Standard Variables
-export EDITOR='emacsclient -s MAIN -a "emacs" -c'
+export EDITOR='emacsclient -a "emacs" -c'
export EA_EDITOR=$EDITOR
export TERMINAL="alacritty"
export BROWSER="qutebrowser"
diff --git a/Shell/.zshrc b/Shell/.zshrc
index 15df5f7..b663f9f 100644
--- a/Shell/.zshrc
+++ b/Shell/.zshrc
@@ -20,15 +20,15 @@ alias sedit="emacsclient -s MAIN -a emacs -c"
alias cedit="emacsclient -s MAIN -a emacs -nw"
vf () {
- vim $(fzf)
+ vim $(fzf)
}
ef () {
- sedit $(fzf)
+ sedit $(fzf)
}
psearch () {
- pacman -Ss $@ | less
+ pacman -Ss $@ | less
}
### Git aliases
@@ -90,15 +90,15 @@ bindkey '^[[B' history-substring-search-down
# Cursor
function zle-keymap-select {
- if [[ ${KEYMAP} == vicmd ]] ||
- [[ $1 = 'block' ]]; then
- echo -ne '\e[1 q'
- elif [[ ${KEYMAP} == main ]] ||
- [[ ${KEYMAP} == viins ]] ||
- [[ ${KEYMAP} = '' ]] ||
- [[ $1 = 'beam' ]]; then
- echo -ne '\e[5 q'
- fi
+ if [[ ${KEYMAP} == vicmd ]] ||
+ [[ $1 = 'block' ]]; then
+ echo -ne '\e[1 q'
+ elif [[ ${KEYMAP} == main ]] ||
+ [[ ${KEYMAP} == viins ]] ||
+ [[ ${KEYMAP} = '' ]] ||
+ [[ $1 = 'beam' ]]; then
+ echo -ne '\e[5 q'
+ fi
}
zle -N zle-keymap-select
diff --git a/XServer/.xinitrc b/XServer/.xinitrc
index 6e73216..237bb41 100644
--- a/XServer/.xinitrc
+++ b/XServer/.xinitrc
@@ -11,7 +11,7 @@ xrandr --auto --output eDP1 --right-of HDMI1;
xrandr --auto --output VGA1 --primary --left-of DP2;
xrandr --auto --output DP2 --rotate left;
-$(xss-lock --transfer-sleep-lock -- lock) &
+$(xss-lock --transfer-sleep-lock -- $HOME/.local/scripts/lock) &
$HOME/.local/scripts/background &
systemctl --user start emacs &