diff options
author | Matt Strapp <matt@mattstrapp.net> | 2022-10-10 13:54:34 +0000 |
---|---|---|
committer | Matt Strapp <matt@mattstrapp.net> | 2022-10-10 13:54:34 +0000 |
commit | a2c9bb1269f46d2276a960b4e7bb6192cc25c70a (patch) | |
tree | 81a641312ab6803d18ce43af851897337caf1251 | |
parent | e? (diff) | |
download | dotfiles-a2c9bb1269f46d2276a960b4e7bb6192cc25c70a.tar dotfiles-a2c9bb1269f46d2276a960b4e7bb6192cc25c70a.tar.gz dotfiles-a2c9bb1269f46d2276a960b4e7bb6192cc25c70a.tar.bz2 dotfiles-a2c9bb1269f46d2276a960b4e7bb6192cc25c70a.tar.lz dotfiles-a2c9bb1269f46d2276a960b4e7bb6192cc25c70a.tar.xz dotfiles-a2c9bb1269f46d2276a960b4e7bb6192cc25c70a.tar.zst dotfiles-a2c9bb1269f46d2276a960b4e7bb6192cc25c70a.zip |
Get rid of batdiff
Signed-off-by: Matt Strapp <matt@mattstrapp.net>
-rw-r--r-- | sh/.config/shell/aliasrc | 10 | ||||
-rw-r--r-- | tmux/.config/tmux/tmux.conf | 2 |
2 files changed, 7 insertions, 5 deletions
diff --git a/sh/.config/shell/aliasrc b/sh/.config/shell/aliasrc index 41616ee..e05a45f 100644 --- a/sh/.config/shell/aliasrc +++ b/sh/.config/shell/aliasrc @@ -22,15 +22,15 @@ alias \ info="pinfo"\ mkdir="mkdir -pv" \ yt="yt-dlp --add-metadata -i" \ - nvim="lvim" \ + nvim="lvim" \ yta="yt -x -f bestaudio/best" \ ffmpeg="ffmpeg -hide_banner" \ df="df -h" \ du="dust -r" \ free="free -m" \ - gdb="gdb -q -nh -x "$XDG_CONFIG_HOME"/gdb/init" \ - # paru="yay" \ - yarn='yarn --use-yarnrc "$XDG_CONFIG_HOME/yarn/config"' \ + gdb="gdb -q -nh -x "$XDG_CONFIG_HOME"/gdb/init" \ + # paru="yay" \ + yarn='yarn --use-yarnrc "$XDG_CONFIG_HOME/yarn/config"' \ # Colorize commands when possible. alias \ ls="exa -aF --group-directories-first" \ @@ -38,7 +38,7 @@ alias \ lt='exa -aTF --group-directories-first' \ lr='exa -aRF' \ grep="rg --color=auto" \ - diff="batdiff --delta" \ + diff="delta" \ cat='bat --paging=never --style=plain' \ #bat='prettybat' \ #ccat="highlight --out-format=ansi" \ diff --git a/tmux/.config/tmux/tmux.conf b/tmux/.config/tmux/tmux.conf index a8d0ae9..471ef39 100644 --- a/tmux/.config/tmux/tmux.conf +++ b/tmux/.config/tmux/tmux.conf @@ -14,6 +14,8 @@ set -g @plugin 'jaclu/tmux-menus' set -g @plugin 'schasse/tmux-jump' set -g @plugin 'MunifTanjim/tmux-mode-indicator' +set-environment -g TMUX_PLUGIN_MANAGER_PATH "~/.local/share/tmux/plugins/" + #ctrl-a for prefix unbind C-b set-option -g prefix C-a |