Skip to content
This repository has been archived by the owner on Feb 16, 2024. It is now read-only.

Commit

Permalink
minor bugfixes.
Browse files Browse the repository at this point in the history
  • Loading branch information
sinarf committed Aug 4, 2023
1 parent d50e031 commit 5c98048
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 38 deletions.
8 changes: 4 additions & 4 deletions all/.config/shell/alias
Original file line number Diff line number Diff line change
Expand Up @@ -34,11 +34,11 @@ alias ipython='ipython_helper.sh'
alias ptw='pytest-watch.sh'

# tmux aliases
alias tmright="tmux split-window -h -c "#{pane_current_path}""
alias tmleft="tmux split-window -h -c "#{pane_current_path}" && tmux swap-pane -U"
alias tmright="tmux split-window -h -c '#{pane_current_path}'"
alias tmleft="tmux split-window -h -c '#{pane_current_path}' && tmux swap-pane -U"

alias tmdown="tmux split-window -c "#{pane_current_path}""
alias tmup="tmux split-window -c "#{pane_current_path}" && tmux swap-pane -U"
alias tmdown="tmux split-window -c '#{pane_current_path}'"
alias tmup="tmux split-window -c '#{pane_current_path}' && tmux swap-pane -U"

alias tldr='tldr --list | fzf --preview "tldr {1} --color=always" --preview-window=right,70% | xargs tldr'

Expand Down
4 changes: 2 additions & 2 deletions all/.config/shell/zshrc.custom
Original file line number Diff line number Diff line change
Expand Up @@ -19,9 +19,9 @@ if [[ -n $TMUX ]] && [[ -z "$NVIM" ]]; then
# But I don't want it when I open a terminal in nvim
if git rev-parse -q --short HEAD 1>&2 2>/dev/null; then
# Never forget to fetch when in a git repository
tmux popup -B -w 80% -h 80% -d $(pwd) -E 'bash -c "echo -e \"\e[34m Git repository detected, fetching...\" && git fetch || true"' &
tmux popup -B -w 80% -h 80% -d $(pwd) -E 'bash -c "echo -e \"\e[34m Git repository detected, fetching...\" && git fetch && sleep 1 || true"' &
disown # eliminate the message when process ends.
clear # removes artifacts from the previous command
clear # keeps the terminal clean
fi
fi

Expand Down
2 changes: 1 addition & 1 deletion mac/Library/Preferences/kitty/kitty.conf
Original file line number Diff line number Diff line change
Expand Up @@ -233,6 +233,6 @@ tab_bar_style slant


# BEGIN_KITTY_THEME
# Apprentice
# Catppuccin-Mocha
include current-theme.conf
# END_KITTY_THEME
31 changes: 0 additions & 31 deletions taskrc

This file was deleted.

0 comments on commit 5c98048

Please sign in to comment.