dotfiles

My dotfiles.
Log | Files | Refs | LICENSE

commit 4c00bfa0e414c405bc9d8b18d8a3affdd209ff19
parent 25362dd5b92c73de8ae65bdd1fa34a1325c2a7b1
Author: Ryan Jeffrey <ryan@ryanmj.xyz>
Date:   Sat,  6 Feb 2021 02:56:21 -0800

zsh fixes

Diffstat:
M.config/emacs/config.org | 7+++----
M.config/zsh/zshrc | 3++-
2 files changed, 5 insertions(+), 5 deletions(-)

diff --git a/.config/emacs/config.org b/.config/emacs/config.org @@ -12,8 +12,8 @@ (defalias 'yes-or-no-p 'y-or-n-p) -(set-frame-parameter (selected-frame) 'alpha '(80 . 80)) -(add-to-list 'default-frame-alist '(alpha . (80 . 80))) +(set-frame-parameter (selected-frame) 'alpha '(85 . 85)) +(add-to-list 'default-frame-alist '(alpha . (85 . 85))) #+END_SRC ** font and theme @@ -312,8 +312,7 @@ *** flycheck #+begin_src emacs-lisp (use-package flycheck - :ensure t - :init (add-hook 'prog-mode-hook 'flycheck-mode)) ; global + :ensure t) #+end_src diff --git a/.config/zsh/zshrc b/.config/zsh/zshrc @@ -97,7 +97,7 @@ alias 9='cd -9' COMPLETION_WAITING_DOTS="true" # Reload piwal theme -#[[ -v SSH_CLIENT ]] || (cat ~/.cache/wal/sequences &) +[[ -v SSH_CLIENT ]] || (cat ~/.cache/wal/sequences &) zstyle ':completion:*' matcher-list 'm:{a-z}={A-Za-z}' @@ -157,6 +157,7 @@ elif type "apt" &>/dev/null; then alias purge='doas apt purge' fi +alias dosu='doas -u root -s' alias untar='tar -xvf' alias ztar='tar -cvJf' alias latex='lualatex'