From bfebfb7521231a3495025984a4a5a39d59611585 Mon Sep 17 00:00:00 2001 From: Trysdyn Black Date: Sun, 3 Oct 2021 16:18:25 -0700 Subject: [PATCH] Minor tweaks to dunst, vim, zsh Auto-init tab completion in ZSH Normalize backspace handling in vim (for windows support) Force dunst to place notifications on monitor 1, since I moved to two-monitor setup. --- .config/dunst/dunstrc | 3 ++- .vimrc | 3 +++ .zshrc | 1 + 3 files changed, 6 insertions(+), 1 deletion(-) diff --git a/.config/dunst/dunstrc b/.config/dunst/dunstrc index 2c6d886..136070d 100644 --- a/.config/dunst/dunstrc +++ b/.config/dunst/dunstrc @@ -1,7 +1,8 @@ [global] geometry = "600x20" shrink = no - follow = mouse + monitor = 1 + follow = none indicate_hidden = yes transparency = 0 frame_width = 2 diff --git a/.vimrc b/.vimrc index 0a43081..ca81e11 100644 --- a/.vimrc +++ b/.vimrc @@ -1,6 +1,9 @@ " Ensure certain plugins work by removing vi compatable modes set nocompatible +" Make backspace work as expected on all platforms +set backspace=indent,eol,start + " Start Vundle, temporarily set some values set rtp+=~/.vim/bundle/Vundle.vim filetype off diff --git a/.zshrc b/.zshrc index 131a5f9..5e29df9 100644 --- a/.zshrc +++ b/.zshrc @@ -62,6 +62,7 @@ SAVEHIST=10000 setopt appendhistory # Case-insensetive tab completion +autoload -Uz compinit && compinit zstyle ':completion:*' matcher-list 'm:{a-z}={A-Za-z}' # To customize prompt, run `p10k configure` or edit ~/.p10k.zsh.