diff --git a/.config/tmux/tmux-fzf-url b/.config/tmux/tmux-fzf-url
deleted file mode 160000
index db053fa1..00000000
--- a/.config/tmux/tmux-fzf-url
+++ /dev/null
@@ -1 +0,0 @@
-Subproject commit db053fa17ec51aae3be80a99ad24e8c30f620770
diff --git a/.config/tmux/tmux.conf b/.config/tmux/tmux.conf
deleted file mode 100644
index 25038806..00000000
--- a/.config/tmux/tmux.conf
+++ /dev/null
@@ -1,127 +0,0 @@
-# GENERAL SETTINGS
-set -g history-limit 10000
-set -g buffer-limit 20
-set -sg escape-time 0
-set -g display-time 1500
-set -g remain-on-exit off
-set -g repeat-time 300
-setw -g allow-rename on
-setw -g automatic-rename on
-set -g set-titles on
-set -g set-titles-string '#T'
-setw -g aggressive-resize on
-set -g prefix 'C-a'
-set -g mouse off
-setw -g mode-keys vi
-set -g destroy-unattached on
-setw -g monitor-activity on
-set -g visual-activity on
-set -g focus-events on
-set -g default-terminal 'st-256color'
-set -g terminal-features "st*:256:clipboard:ccolour:cstyle:extkeys:focus:mouse:sixel:strikethrough:title:sync:usstyle"
-set-option -g default-shell /bin/zsh
-
-
-# STATUS BAR SETTINGS
-set -g mode-style "fg=default,bg=blue"
-set -g message-style "fg=green,bg=black"
-set -g status-style "fg=gray,bg=black"
-set -g status-left ""
-set -g status-right "#{user}@#H Session:#S Pane_PID:#{pane_pid} Client_PID:#{client_pid} Server_PID:#{pid} Version: #{version} "
-setw -g window-status-current-style "fg=black,bold,bg=blue"
-setw -g window-status-current-format " #I "
-setw -g window-status-activity-style "fg=gray"
-setw -g pane-active-border-style "fg=blue"
-
-set -g status off
-set -g status-interval 1
-set -g status-position bottom
-set -g status-justify left
-set -g status-right-length 100
-
-# CLIPBOARD CMD
-yank="xsel -i --clipboard"
-
-# BINDINGS
-unbind 'C-b'
-unbind '$'
-unbind ','
-unbind '%'
-unbind '"'
-unbind '}'
-unbind '{'
-unbind '['
-unbind ']'
-unbind "'"
-unbind 'n'
-unbind 'p'
-unbind 'l'
-unbind 'M'
-unbind 'o'
-unbind '&'
-unbind '#'
-unbind '='
-unbind 'z'
-unbind 'Space'
-unbind 'M-Up'
-unbind 'M-Down'
-unbind 'M-Right'
-unbind 'M-Left'
-
-bind 'C-a' send-prefix
-bind 'C-l' clear-history
-bind 'h' select-pane -L
-bind 'j' select-pane -D
-bind 'k' select-pane -U
-bind 'l' select-pane -R
-bind 'C-r' source-file $XDG_CONFIG_HOME/tmux/tmux.conf \; display "Config reloaded"
-bind 'r' command-prompt -I "#{window_name}" "rename-window '%%'"
-bind 'R' command-prompt -I "#{session_name}" "rename-session '%%'"
-bind 'c' new-window -c "#{pane_current_path}"
-bind '|' split-window -h -c "#{pane_current_path}"
-bind '_' split-window -v -c "#{pane_current_path}"
-bind -r 'C-[' previous-window
-bind -r 'C-]' next-window
-bind -r '[' select-pane -t :.-
-bind -r ']' select-pane -t :.+
-bind -r 'Tab' last-window   # cycle thru MRU tabs
-bind -r 'C-o' swap-pane -D
-bind '+' resize-pane -Z
-bind 'L' command-prompt -p "Link window from (session:window): " "link-window -s %% -a"
-bind 'Space' if '[ #{pane_index} -eq 2 ]' \
-     'swap-pane -s "!"' \
-     'select-pane -t:.1 ; swap-pane -d -t 1 -s "!"'
-bind 'x' kill-pane
-bind 'X' kill-window
-bind 'C-x' confirm-before -p "kill other windows? (y/n)" "kill-window -a"
-bind 'Q' confirm-before -p "kill-session #S? (y/n)" kill-session
-bind 'C-u' command-prompt -p "Session to merge with: " \
-   "run-shell 'yes | head -n #{session_windows} | xargs -I {} -n 1 tmux movew -t %%'"
-bind 'd' detach
-bind 'D' if -F '#{session_many_attached}' \
-    'confirm-before -p "Detach other clients? (y/n)" "detach -a"' \
-    'display "Session has only 1 client attached"'
-bind 'C-s' if -F '#{s/off//:status}' 'set status off' 'set status on'
-bind 'm' setw monitor-activity \; display-message 'Monitor window activity [#{?monitor-activity,ON,OFF}]'
-bind 'M' if -F '#{monitor-silence}' \
-    'setw monitor-silence 0 ; display-message "Monitor window silence [OFF]"' \
-    'command-prompt -p "Monitor silence: interval (s)" "setw monitor-silence %%"'
-bind 'p' paste-buffer
-bind 'C-p' choose-buffer
-bind 'C-c' copy-mode
-bind -T copy-mode-vi 'y' send-keys -X copy-pipe-and-cancel "$yank"
-bind -T copy-mode-vi 'Y' send-keys -X copy-line-and-cancel \; run "tmux save-buffer - | $yank"
-# These binds allow toggling of keybind handling by the root tmux session
-# This is helpful when nesting tmux sessions (i.e. when using SSH)
-bind -T root F12  \
-    set prefix None \;\
-    set key-table off \;\
-    if -F '#{pane_in_mode}' 'send-keys -X cancel' \;\
-    refresh-client -S
-bind -T off F12 \
-  set -u prefix \;\
-  set -u key-table \;\
-  refresh-client -S
-
-# PLUGINS
-run $XDG_CONFIG_HOME/tmux/tmux-fzf-url/fzf-url.tmux