Remove tmux

- Remove tmux from alacritty
- Remove tmux configuration and plugins
- Remove tmux submodule
This commit is contained in:
Sravan Balaji
2020-07-26 00:49:02 -04:00
parent da643e8e8b
commit ea45341404
5 changed files with 4 additions and 41 deletions

View File

@@ -385,10 +385,10 @@ cursor:
# - (Windows) powershell
shell:
program: /usr/bin/fish
args:
- -l
- -c
- "tmux attach || tmux"
# args:
# - -l
# - -c
# - "tmux attach || tmux"
# Startup directory
#

3
.gitmodules vendored
View File

@@ -1,9 +1,6 @@
[submodule ".vim/pack/themes/start/dracula"]
path = .vim/pack/themes/start/dracula
url = https://github.com/dracula/vim.git
[submodule ".tmux/plugins/tpm"]
path = .tmux/plugins/tpm
url = https://github.com/tmux-plugins/tpm
[submodule ".themes/Dracula"]
path = .themes/Dracula
url = git@github.com:dracula/gtk.git

View File

@@ -1,32 +0,0 @@
# List of plugins
set -g @plugin 'tmux-plugins/tpm'
set -g @plugin 'dracula/tmux'
# remap prefix from 'C-b' to 'C-a'
unbind C-b
set-option -g prefix C-a
bind-key C-a send-prefix
# split panes using | and -
bind | split-window -h
bind - split-window -v
unbind '"'
unbind %
# reload config file
bind R source-file ~/.tmux.conf
# switch panes using Alt-arrow without prefix
bind -n M-Left select-pane -L
bind -n M-Right select-pane -R
bind -n M-Up select-pane -U
bind -n M-Down select-pane -D
# Enable mouse mode (tmux 2.1 and above)
set -g mouse on
# don't rename windows automatically
# set-option -g allow-rename off
# Initialize TMUX plugin manager (keep this line at the very bottom of tmux.conf)
run -b '~/.tmux/plugins/tpm/tpm'

Submodule .tmux/plugins/tmux deleted from d311e94d86