Compare commits

..

No commits in common. '35a80def92f95d575d9706cd7d5dd2f067890e47' and '389532b6cf02380b48f273c8f18737893f96fa72' have entirely different histories.

@ -120,8 +120,14 @@ bind-key M-4 send-keys "$FAVORITE_COMMAND4"
unbind r
bind r source-file ~/.tmux.conf \; display-message "config reloaded!"
# plugin last_command_output
set -g @command-capture-prompt-pattern '$ '
set -g @command-capture-editor-cmd 'gedit -'
# Plugins
set -g @plugin 'tmux-plugins/tpm'
set -g @plugin 'laktak/extrakto'
set -g @plugin 'artemave/tmux_capture_last_command_output'
set -g @plugin "arcticicestudio/nord-tmux"
# run tpm

@ -40,11 +40,6 @@ export FAVORITE_COMMAND4="{{ .tmux_favorite4 }}"
alias cdd='cd {{ .deploydir }}'
export cdd={{ .deploydir }}
alias rm='rm --interactive --verbose'
alias mv='mv --interactive --verbose'
alias cp='cp --verbose --interactive'
alias dmesg='dmesg -T'
alias grep='grep --color'
# ---------------------------------------------------------------------------
# History
@ -87,15 +82,6 @@ alias vi=$EDITOR
# Tmux
# ---------------------------------------------------------------------------
if command -v tmux &>/dev/null; then
alias ta='tmux attach'
alias tkill="for s in \$(tmux list-sessions | awk -F ':' '{print \$1}' | fzf); do
tmux kill-session -t \$s;
done"
fi
# Function to set tmux window title
function set_tmux_title {
if [[ -n "$TMUX" ]]; then
@ -186,15 +172,3 @@ if command -v mvn &>/dev/null; then
# copy maven artifact
alias d="python3 ~/.local/bin/deploy.py '$cdd'"
fi
# ---------------------------------------------------------------------------
# Nix
# ---------------------------------------------------------------------------
if command nix-env &>/dev/null; then
alias nix-update='nix-channel --update && nix-env -u'
nix-search() {
nix-env -qa --description ".*$1.*"
}
fi
Loading…
Cancel
Save