Revert "Add tmux"

This reverts commit 63d7830987.
I didn't like the way tmux changed some inputs (keybinds, mousewheel)
This commit is contained in:
Tobias Reisinger 2024-05-23 19:58:53 +02:00
parent 63d7830987
commit 8c194df84b
Signed by: serguzim
GPG key ID: 13AD60C237A28DFE
9 changed files with 5 additions and 41 deletions

View file

@ -24,7 +24,6 @@ declare -A mapper=(
["ssh"]="$HOME/.ssh/config"
["starship"]="$HOME/.config/starship.toml"
["sxhkd"]="$HOME/.config/sxhkd/sxhkdrc"
["tmux"]="$HOME/.config/tmux/tmux.conf"
["vim"]="$HOME/.config/vim/vimrc"
["wakatime"]="$HOME/.config/wakatime/.wakatime.cfg##template"
["waybar"]="$HOME/.config/waybar/"

View file

@ -10,11 +10,6 @@ AUTOINSTALL_ITEM_TARGET="$HOME/.config/nvim"
AUTOINSTALL_ITEM_HOOK='[ -x "$(command -v nvim)" ] && nvim --headless +q'
AUTOINSTALL_ITEM_GROUPS="base"
AUTOINSTALL_ITEM_TYPE="git"
AUTOINSTALL_ITEM_SOURCE="https://github.com/tmux-plugins/tpm"
AUTOINSTALL_ITEM_TARGET="$HOME/.tmux/plugins/tpm"
AUTOINSTALL_ITEM_GROUPS="base"
AUTOINSTALL_ITEM_TYPE="exe"
AUTOINSTALL_ITEM_SOURCE="https://github.com/starship/starship/releases/download/v1.17.1/starship-x86_64-unknown-linux-gnu.tar.gz"
AUTOINSTALL_ITEM_TARGET="starship"

View file

@ -3,7 +3,7 @@
export KUBECONFIG="$HOME/.kube/config"
export MAILCAPS="$XDG_CONFIG_HOME/mailcap/mailcaprc"
export MARKPATH="$XDG_CONFIG_HOME/jump_marks"
export MARKPATH="$XDG_CONFIG_HOME/zsh/jump_marks"
export NOTMUCH_CONFIG="$XDG_CONFIG_HOME/notmuch/config"

View file

@ -2,7 +2,7 @@
export AUTOSTART_DISPLAY="Hyprland"
export DUNST_MONITOR="$MONITOR_SECONDARY"
export MONITOR_PRIMARY="DP-1"
export MONITOR_SECONDARY="HDMI-A-1"
export DUNST_MONITOR="$MONITOR_SECONDARY"

View file

@ -35,7 +35,6 @@
rmtrash # rm wrapper to use trash
shellcheck # tool for shell-syntax
starship # shell prompt
tmux # terminal multiplexer
tokei # project-language statistics
trash-cli # trash utils
unzip # unzip

View file

@ -1 +0,0 @@
plugins/

View file

@ -1,7 +0,0 @@
neww -c ~/projects/emgauwa/workspace -n emgauwa
splitw -c ~/projects/emgauwa/workspace/common -h -p 50 -t 0
splitw -c ~/projects/emgauwa/workspace/controller -v -p 66 -t 1
splitw -c ~/projects/emgauwa/workspace/core -v -p 50 -t 2
selectp -t 0

View file

@ -1,18 +0,0 @@
set -g default-terminal "xterm-256color"
set-option -ga terminal-overrides ",xterm-256color:Tc"
set -as terminal-features ",alacritty*:RGB"
# List of plugins
set -g @plugin 'tmux-plugins/tpm'
set -g @plugin 'tmux-plugins/tmux-sensible'
set -g @plugin 'dracula/tmux'
set -g @dracula-show-powerline true
set -g @dracula-show-left-icon shortname
set -g @dracula-plugins "cpu-usage ram-usage"
# Initialize TMUX plugin manager (keep this line at the very bottom of tmux.conf)
run '~/.tmux/plugins/tpm/tpm'
# Sessions
bind E source-file ~/.config/tmux/emgauwa.conf

View file

@ -1,10 +1,5 @@
source "$HOME/.config/environment"
if [ -x "$(command -v tmux)" ] && [ -z "$TMUX" ]; then
tmux
exit
fi
autoinstall git "https://github.com/ohmyzsh/ohmyzsh.git" "$ZSH"
# Set name of the theme to load --- if set to "random", it will
@ -112,6 +107,8 @@ source "$HOME/.config/completionsrc"
source "$HOME/.config/aliasrc"
[ -x "$(command -v thefuck)" ] && eval $(thefuck --alias)
export MARKPATH="$HOME/.config/zsh/jump_marks"
setopt HIST_IGNORE_DUPS
export SAVEHIST=1000000
export HISTSIZE=1000000