diff --git a/dot_config/alacritty/alacritty.yml b/dot_config/alacritty/alacritty.yml index 92bc9ba..60dde52 100644 --- a/dot_config/alacritty/alacritty.yml +++ b/dot_config/alacritty/alacritty.yml @@ -81,4 +81,4 @@ colors: background: "#1f1d2e" end: foreground: "#6e6a86" - background: "#1f1d2e" \ No newline at end of file + background: "#1f1d2e" diff --git a/dot_config/gitui/key_bindings.ron b/dot_config/gitui/key_bindings.ron new file mode 100644 index 0000000..dc6bf20 --- /dev/null +++ b/dot_config/gitui/key_bindings.ron @@ -0,0 +1,49 @@ +// bit for modifiers +// bits: 0 None +// bits: 1 SHIFT +// bits: 2 CONTROL +// +// Note: +// If the default key layout is lower case, +// and you want to use `Shift + q` to trigger the exit event, +// the setting should like this `exit: Some(( code: Char('Q'), modifiers: ( bits: 1,),)),` +// The Char should be upper case, and the shift modified bit should be set to 1. +// +// Note: +// find `KeysList` type in src/keys/key_list.rs for all possible keys. +// every key not overwritten via the config file will use the default specified there +( + focus_right: Some(( code: Char('l'), modifiers: ( bits: 0,),)), + focus_left: Some(( code: Char('h'), modifiers: ( bits: 0,),)), + focus_above: Some(( code: Char('k'), modifiers: ( bits: 0,),)), + focus_below: Some(( code: Char('j'), modifiers: ( bits: 0,),)), + + open_help: Some(( code: F(1), modifiers: ( bits: 0,),)), + + move_left: Some(( code: Char('h'), modifiers: ( bits: 0,),)), + move_right: Some(( code: Char('l'), modifiers: ( bits: 0,),)), + move_up: Some(( code: Char('k'), modifiers: ( bits: 0,),)), + move_down: Some(( code: Char('j'), modifiers: ( bits: 0,),)), + popup_up: Some(( code: Char('p'), modifiers: ( bits: 2,),)), + popup_down: Some(( code: Char('n'), modifiers: ( bits: 2,),)), + page_up: Some(( code: Char('b'), modifiers: ( bits: 2,),)), + page_down: Some(( code: Char('f'), modifiers: ( bits: 2,),)), + home: Some(( code: Char('g'), modifiers: ( bits: 0,),)), + end: Some(( code: Char('G'), modifiers: ( bits: 1,),)), + shift_up: Some(( code: Char('K'), modifiers: ( bits: 1,),)), + shift_down: Some(( code: Char('J'), modifiers: ( bits: 1,),)), + + edit_file: Some(( code: Char('I'), modifiers: ( bits: 1,),)), + + status_reset_item: Some(( code: Char('U'), modifiers: ( bits: 1,),)), + + diff_reset_lines: Some(( code: Char('u'), modifiers: ( bits: 0,),)), + diff_stage_lines: Some(( code: Char('s'), modifiers: ( bits: 0,),)), + + stashing_save: Some(( code: Char('w'), modifiers: ( bits: 0,),)), + stashing_toggle_index: Some(( code: Char('m'), modifiers: ( bits: 0,),)), + + stash_open: Some(( code: Char('l'), modifiers: ( bits: 0,),)), + + abort_merge: Some(( code: Char('M'), modifiers: ( bits: 1,),)), +) diff --git a/dot_config/helix/symlink_runtime b/dot_config/helix/symlink_runtime index 6793872..642f50e 100644 --- a/dot_config/helix/symlink_runtime +++ b/dot_config/helix/symlink_runtime @@ -1 +1 @@ -/home/riiku/myrepos/helix/runtime +/home/riiku/repos/helix/runtime diff --git a/dot_config/lf/lfrc b/dot_config/lf/lfrc index 603b8fd..f0eae03 100644 --- a/dot_config/lf/lfrc +++ b/dot_config/lf/lfrc @@ -183,4 +183,4 @@ map au unarchive # directories aliases map gc cd ~/.config -map gd cd ~/Files/HD1/Downloads +map gd cd ~/drives/drive_1/Downloads diff --git a/dot_config/private_fish/fish_variables b/dot_config/private_fish/fish_variables index 5ea0ebc..fbce980 100644 --- a/dot_config/private_fish/fish_variables +++ b/dot_config/private_fish/fish_variables @@ -81,4 +81,4 @@ SETUVAR fish_pager_color_selected_background:\x1d SETUVAR fish_pager_color_selected_completion:\x1d SETUVAR fish_pager_color_selected_description:\x1d SETUVAR fish_pager_color_selected_prefix:\x1d -SETUVAR fish_user_paths:/home/riiku/\x2espicetify\x1e/home/riiku/\x2edeno/bin\x1e/home/riiku/\x2ecargo/bin\x1e/home/riiku/\x2elocal/bin +SETUVAR fish_user_paths:/home/riiku/\x2enimble/bin\x1e/home/riiku/\x2enim/bin\x1e/home/riiku/\x2espicetify\x1e/home/riiku/\x2edeno/bin\x1e/home/riiku/\x2ecargo/bin\x1e/home/riiku/\x2elocal/bin diff --git a/dot_config/tmux/tmux.conf b/dot_tmux.conf similarity index 84% rename from dot_config/tmux/tmux.conf rename to dot_tmux.conf index 2cea3d7..a5ae09b 100644 --- a/dot_config/tmux/tmux.conf +++ b/dot_tmux.conf @@ -38,5 +38,8 @@ set -g @dracula-military-time true set -g @dracula-day-month true set -g @dracula-show-flags true +# Automatic tpm installation +if "test ! -d ~/.tmux/plugins/tpm" \ + "run 'git clone https://github.com/tmux-plugins/tpm ~/.tmux/plugins/tpm && ~/.tmux/plugins/tpm/bin/install_plugins'" # Initialize TMUX plugin manager (keep this line at the very bottom of tmux.conf) run '~/.tmux/plugins/tpm/tpm' \ No newline at end of file diff --git a/dot_config/tmux/plugins/tmux-sensible/CHANGELOG.md b/dot_tmux/plugins/tmux-sensible/CHANGELOG.md similarity index 100% rename from dot_config/tmux/plugins/tmux-sensible/CHANGELOG.md rename to dot_tmux/plugins/tmux-sensible/CHANGELOG.md diff --git a/dot_config/tmux/plugins/tmux-sensible/LICENSE.md b/dot_tmux/plugins/tmux-sensible/LICENSE.md similarity index 100% rename from dot_config/tmux/plugins/tmux-sensible/LICENSE.md rename to dot_tmux/plugins/tmux-sensible/LICENSE.md diff --git a/dot_config/tmux/plugins/tmux-sensible/README.md b/dot_tmux/plugins/tmux-sensible/README.md similarity index 100% rename from dot_config/tmux/plugins/tmux-sensible/README.md rename to dot_tmux/plugins/tmux-sensible/README.md diff --git a/dot_config/tmux/plugins/tmux-sensible/dot_git/HEAD b/dot_tmux/plugins/tmux-sensible/dot_git/HEAD similarity index 100% rename from dot_config/tmux/plugins/tmux-sensible/dot_git/HEAD rename to dot_tmux/plugins/tmux-sensible/dot_git/HEAD diff --git a/dot_config/tmux/plugins/tmux-sensible/dot_git/branches/.keep b/dot_tmux/plugins/tmux-sensible/dot_git/branches/.keep similarity index 100% rename from dot_config/tmux/plugins/tmux-sensible/dot_git/branches/.keep rename to dot_tmux/plugins/tmux-sensible/dot_git/branches/.keep diff --git a/dot_config/tmux/plugins/tmux-sensible/dot_git/config b/dot_tmux/plugins/tmux-sensible/dot_git/config similarity index 100% rename from dot_config/tmux/plugins/tmux-sensible/dot_git/config rename to dot_tmux/plugins/tmux-sensible/dot_git/config diff --git a/dot_config/tmux/plugins/tmux-sensible/dot_git/description b/dot_tmux/plugins/tmux-sensible/dot_git/description similarity index 100% rename from dot_config/tmux/plugins/tmux-sensible/dot_git/description rename to dot_tmux/plugins/tmux-sensible/dot_git/description diff --git a/dot_config/tmux/plugins/tmux-sensible/dot_git/hooks/executable_applypatch-msg.sample b/dot_tmux/plugins/tmux-sensible/dot_git/hooks/executable_applypatch-msg.sample similarity index 100% rename from dot_config/tmux/plugins/tmux-sensible/dot_git/hooks/executable_applypatch-msg.sample rename to dot_tmux/plugins/tmux-sensible/dot_git/hooks/executable_applypatch-msg.sample diff --git a/dot_config/tmux/plugins/tmux-sensible/dot_git/hooks/executable_commit-msg.sample b/dot_tmux/plugins/tmux-sensible/dot_git/hooks/executable_commit-msg.sample similarity index 100% rename from dot_config/tmux/plugins/tmux-sensible/dot_git/hooks/executable_commit-msg.sample rename to dot_tmux/plugins/tmux-sensible/dot_git/hooks/executable_commit-msg.sample diff --git a/dot_config/tmux/plugins/tmux-sensible/dot_git/hooks/executable_fsmonitor-watchman.sample b/dot_tmux/plugins/tmux-sensible/dot_git/hooks/executable_fsmonitor-watchman.sample similarity index 100% rename from dot_config/tmux/plugins/tmux-sensible/dot_git/hooks/executable_fsmonitor-watchman.sample rename to dot_tmux/plugins/tmux-sensible/dot_git/hooks/executable_fsmonitor-watchman.sample diff --git a/dot_config/tmux/plugins/tmux-sensible/dot_git/hooks/executable_post-update.sample b/dot_tmux/plugins/tmux-sensible/dot_git/hooks/executable_post-update.sample similarity index 100% rename from dot_config/tmux/plugins/tmux-sensible/dot_git/hooks/executable_post-update.sample rename to dot_tmux/plugins/tmux-sensible/dot_git/hooks/executable_post-update.sample diff --git a/dot_config/tmux/plugins/tmux-sensible/dot_git/hooks/executable_pre-applypatch.sample b/dot_tmux/plugins/tmux-sensible/dot_git/hooks/executable_pre-applypatch.sample similarity index 100% rename from dot_config/tmux/plugins/tmux-sensible/dot_git/hooks/executable_pre-applypatch.sample rename to dot_tmux/plugins/tmux-sensible/dot_git/hooks/executable_pre-applypatch.sample diff --git a/dot_config/tmux/plugins/tmux-sensible/dot_git/hooks/executable_pre-commit.sample b/dot_tmux/plugins/tmux-sensible/dot_git/hooks/executable_pre-commit.sample similarity index 100% rename from dot_config/tmux/plugins/tmux-sensible/dot_git/hooks/executable_pre-commit.sample rename to dot_tmux/plugins/tmux-sensible/dot_git/hooks/executable_pre-commit.sample diff --git a/dot_config/tmux/plugins/tmux-sensible/dot_git/hooks/executable_pre-merge-commit.sample b/dot_tmux/plugins/tmux-sensible/dot_git/hooks/executable_pre-merge-commit.sample similarity index 100% rename from dot_config/tmux/plugins/tmux-sensible/dot_git/hooks/executable_pre-merge-commit.sample rename to dot_tmux/plugins/tmux-sensible/dot_git/hooks/executable_pre-merge-commit.sample diff --git a/dot_config/tmux/plugins/tmux-sensible/dot_git/hooks/executable_pre-push.sample b/dot_tmux/plugins/tmux-sensible/dot_git/hooks/executable_pre-push.sample similarity index 100% rename from dot_config/tmux/plugins/tmux-sensible/dot_git/hooks/executable_pre-push.sample rename to dot_tmux/plugins/tmux-sensible/dot_git/hooks/executable_pre-push.sample diff --git a/dot_config/tmux/plugins/tmux-sensible/dot_git/hooks/executable_pre-rebase.sample b/dot_tmux/plugins/tmux-sensible/dot_git/hooks/executable_pre-rebase.sample similarity index 100% rename from dot_config/tmux/plugins/tmux-sensible/dot_git/hooks/executable_pre-rebase.sample rename to dot_tmux/plugins/tmux-sensible/dot_git/hooks/executable_pre-rebase.sample diff --git a/dot_config/tmux/plugins/tmux-sensible/dot_git/hooks/executable_pre-receive.sample b/dot_tmux/plugins/tmux-sensible/dot_git/hooks/executable_pre-receive.sample similarity index 100% rename from dot_config/tmux/plugins/tmux-sensible/dot_git/hooks/executable_pre-receive.sample rename to dot_tmux/plugins/tmux-sensible/dot_git/hooks/executable_pre-receive.sample diff --git a/dot_config/tmux/plugins/tmux-sensible/dot_git/hooks/executable_prepare-commit-msg.sample b/dot_tmux/plugins/tmux-sensible/dot_git/hooks/executable_prepare-commit-msg.sample similarity index 100% rename from dot_config/tmux/plugins/tmux-sensible/dot_git/hooks/executable_prepare-commit-msg.sample rename to dot_tmux/plugins/tmux-sensible/dot_git/hooks/executable_prepare-commit-msg.sample diff --git a/dot_config/tmux/plugins/tmux-sensible/dot_git/hooks/executable_push-to-checkout.sample b/dot_tmux/plugins/tmux-sensible/dot_git/hooks/executable_push-to-checkout.sample similarity index 100% rename from dot_config/tmux/plugins/tmux-sensible/dot_git/hooks/executable_push-to-checkout.sample rename to dot_tmux/plugins/tmux-sensible/dot_git/hooks/executable_push-to-checkout.sample diff --git a/dot_config/tmux/plugins/tmux-sensible/dot_git/hooks/executable_update.sample b/dot_tmux/plugins/tmux-sensible/dot_git/hooks/executable_update.sample similarity index 100% rename from dot_config/tmux/plugins/tmux-sensible/dot_git/hooks/executable_update.sample rename to dot_tmux/plugins/tmux-sensible/dot_git/hooks/executable_update.sample diff --git a/dot_config/tmux/plugins/tmux-sensible/dot_git/index b/dot_tmux/plugins/tmux-sensible/dot_git/index similarity index 100% rename from dot_config/tmux/plugins/tmux-sensible/dot_git/index rename to dot_tmux/plugins/tmux-sensible/dot_git/index diff --git a/dot_config/tmux/plugins/tmux-sensible/dot_git/info/exclude b/dot_tmux/plugins/tmux-sensible/dot_git/info/exclude similarity index 100% rename from dot_config/tmux/plugins/tmux-sensible/dot_git/info/exclude rename to dot_tmux/plugins/tmux-sensible/dot_git/info/exclude diff --git a/dot_config/tmux/plugins/tmux-sensible/dot_git/logs/HEAD b/dot_tmux/plugins/tmux-sensible/dot_git/logs/HEAD similarity index 100% rename from dot_config/tmux/plugins/tmux-sensible/dot_git/logs/HEAD rename to dot_tmux/plugins/tmux-sensible/dot_git/logs/HEAD diff --git a/dot_config/tmux/plugins/tmux-sensible/dot_git/logs/refs/heads/master b/dot_tmux/plugins/tmux-sensible/dot_git/logs/refs/heads/master similarity index 100% rename from dot_config/tmux/plugins/tmux-sensible/dot_git/logs/refs/heads/master rename to dot_tmux/plugins/tmux-sensible/dot_git/logs/refs/heads/master diff --git a/dot_config/tmux/plugins/tmux-sensible/dot_git/logs/refs/remotes/origin/HEAD b/dot_tmux/plugins/tmux-sensible/dot_git/logs/refs/remotes/origin/HEAD similarity index 100% rename from dot_config/tmux/plugins/tmux-sensible/dot_git/logs/refs/remotes/origin/HEAD rename to dot_tmux/plugins/tmux-sensible/dot_git/logs/refs/remotes/origin/HEAD diff --git a/dot_config/tmux/plugins/tmux-sensible/dot_git/objects/info/.keep b/dot_tmux/plugins/tmux-sensible/dot_git/objects/info/.keep similarity index 100% rename from dot_config/tmux/plugins/tmux-sensible/dot_git/objects/info/.keep rename to dot_tmux/plugins/tmux-sensible/dot_git/objects/info/.keep diff --git a/dot_config/tmux/plugins/tmux-sensible/dot_git/objects/pack/readonly_pack-461192ed6d954a9c51bfaf75cb6de796d6e7327f.idx b/dot_tmux/plugins/tmux-sensible/dot_git/objects/pack/readonly_pack-461192ed6d954a9c51bfaf75cb6de796d6e7327f.idx similarity index 100% rename from dot_config/tmux/plugins/tmux-sensible/dot_git/objects/pack/readonly_pack-461192ed6d954a9c51bfaf75cb6de796d6e7327f.idx rename to dot_tmux/plugins/tmux-sensible/dot_git/objects/pack/readonly_pack-461192ed6d954a9c51bfaf75cb6de796d6e7327f.idx diff --git a/dot_config/tmux/plugins/tmux-sensible/dot_git/objects/pack/readonly_pack-461192ed6d954a9c51bfaf75cb6de796d6e7327f.pack b/dot_tmux/plugins/tmux-sensible/dot_git/objects/pack/readonly_pack-461192ed6d954a9c51bfaf75cb6de796d6e7327f.pack similarity index 100% rename from dot_config/tmux/plugins/tmux-sensible/dot_git/objects/pack/readonly_pack-461192ed6d954a9c51bfaf75cb6de796d6e7327f.pack rename to dot_tmux/plugins/tmux-sensible/dot_git/objects/pack/readonly_pack-461192ed6d954a9c51bfaf75cb6de796d6e7327f.pack diff --git a/dot_config/tmux/plugins/tmux-sensible/dot_git/packed-refs b/dot_tmux/plugins/tmux-sensible/dot_git/packed-refs similarity index 100% rename from dot_config/tmux/plugins/tmux-sensible/dot_git/packed-refs rename to dot_tmux/plugins/tmux-sensible/dot_git/packed-refs diff --git a/dot_config/tmux/plugins/tmux-sensible/dot_git/refs/heads/master b/dot_tmux/plugins/tmux-sensible/dot_git/refs/heads/master similarity index 100% rename from dot_config/tmux/plugins/tmux-sensible/dot_git/refs/heads/master rename to dot_tmux/plugins/tmux-sensible/dot_git/refs/heads/master diff --git a/dot_config/tmux/plugins/tmux-sensible/dot_git/refs/remotes/origin/HEAD b/dot_tmux/plugins/tmux-sensible/dot_git/refs/remotes/origin/HEAD similarity index 100% rename from dot_config/tmux/plugins/tmux-sensible/dot_git/refs/remotes/origin/HEAD rename to dot_tmux/plugins/tmux-sensible/dot_git/refs/remotes/origin/HEAD diff --git a/dot_config/tmux/plugins/tmux-sensible/dot_git/refs/tags/v1.0.0 b/dot_tmux/plugins/tmux-sensible/dot_git/refs/tags/v1.0.0 similarity index 100% rename from dot_config/tmux/plugins/tmux-sensible/dot_git/refs/tags/v1.0.0 rename to dot_tmux/plugins/tmux-sensible/dot_git/refs/tags/v1.0.0 diff --git a/dot_config/tmux/plugins/tmux-sensible/dot_git/refs/tags/v1.1.0 b/dot_tmux/plugins/tmux-sensible/dot_git/refs/tags/v1.1.0 similarity index 100% rename from dot_config/tmux/plugins/tmux-sensible/dot_git/refs/tags/v1.1.0 rename to dot_tmux/plugins/tmux-sensible/dot_git/refs/tags/v1.1.0 diff --git a/dot_config/tmux/plugins/tmux-sensible/dot_git/refs/tags/v2.0.0 b/dot_tmux/plugins/tmux-sensible/dot_git/refs/tags/v2.0.0 similarity index 100% rename from dot_config/tmux/plugins/tmux-sensible/dot_git/refs/tags/v2.0.0 rename to dot_tmux/plugins/tmux-sensible/dot_git/refs/tags/v2.0.0 diff --git a/dot_config/tmux/plugins/tmux-sensible/dot_git/refs/tags/v2.1.0 b/dot_tmux/plugins/tmux-sensible/dot_git/refs/tags/v2.1.0 similarity index 100% rename from dot_config/tmux/plugins/tmux-sensible/dot_git/refs/tags/v2.1.0 rename to dot_tmux/plugins/tmux-sensible/dot_git/refs/tags/v2.1.0 diff --git a/dot_config/tmux/plugins/tmux-sensible/dot_git/refs/tags/v2.2.0 b/dot_tmux/plugins/tmux-sensible/dot_git/refs/tags/v2.2.0 similarity index 100% rename from dot_config/tmux/plugins/tmux-sensible/dot_git/refs/tags/v2.2.0 rename to dot_tmux/plugins/tmux-sensible/dot_git/refs/tags/v2.2.0 diff --git a/dot_config/tmux/plugins/tmux-sensible/dot_git/refs/tags/v2.3.0 b/dot_tmux/plugins/tmux-sensible/dot_git/refs/tags/v2.3.0 similarity index 100% rename from dot_config/tmux/plugins/tmux-sensible/dot_git/refs/tags/v2.3.0 rename to dot_tmux/plugins/tmux-sensible/dot_git/refs/tags/v2.3.0 diff --git a/dot_config/tmux/plugins/tmux-sensible/dot_git/refs/tags/v3.0.0 b/dot_tmux/plugins/tmux-sensible/dot_git/refs/tags/v3.0.0 similarity index 100% rename from dot_config/tmux/plugins/tmux-sensible/dot_git/refs/tags/v3.0.0 rename to dot_tmux/plugins/tmux-sensible/dot_git/refs/tags/v3.0.0 diff --git a/dot_config/tmux/plugins/tmux-sensible/dot_gitattributes b/dot_tmux/plugins/tmux-sensible/dot_gitattributes similarity index 100% rename from dot_config/tmux/plugins/tmux-sensible/dot_gitattributes rename to dot_tmux/plugins/tmux-sensible/dot_gitattributes diff --git a/dot_config/tmux/plugins/tmux-sensible/executable_sensible.tmux b/dot_tmux/plugins/tmux-sensible/executable_sensible.tmux similarity index 100% rename from dot_config/tmux/plugins/tmux-sensible/executable_sensible.tmux rename to dot_tmux/plugins/tmux-sensible/executable_sensible.tmux diff --git a/dot_config/tmux/plugins/tmux/INSTALL.md b/dot_tmux/plugins/tmux/INSTALL.md similarity index 100% rename from dot_config/tmux/plugins/tmux/INSTALL.md rename to dot_tmux/plugins/tmux/INSTALL.md diff --git a/dot_config/tmux/plugins/tmux/LICENSE b/dot_tmux/plugins/tmux/LICENSE similarity index 100% rename from dot_config/tmux/plugins/tmux/LICENSE rename to dot_tmux/plugins/tmux/LICENSE diff --git a/dot_config/tmux/plugins/tmux/README.md b/dot_tmux/plugins/tmux/README.md similarity index 100% rename from dot_config/tmux/plugins/tmux/README.md rename to dot_tmux/plugins/tmux/README.md diff --git a/dot_config/tmux/plugins/tmux/data/empty_dot_gitkeep b/dot_tmux/plugins/tmux/data/empty_dot_gitkeep similarity index 100% rename from dot_config/tmux/plugins/tmux/data/empty_dot_gitkeep rename to dot_tmux/plugins/tmux/data/empty_dot_gitkeep diff --git a/dot_config/tmux/plugins/tmux/dot_editorconfig b/dot_tmux/plugins/tmux/dot_editorconfig similarity index 100% rename from dot_config/tmux/plugins/tmux/dot_editorconfig rename to dot_tmux/plugins/tmux/dot_editorconfig diff --git a/dot_config/tmux/plugins/tmux/dot_git/HEAD b/dot_tmux/plugins/tmux/dot_git/HEAD similarity index 100% rename from dot_config/tmux/plugins/tmux/dot_git/HEAD rename to dot_tmux/plugins/tmux/dot_git/HEAD diff --git a/dot_config/tmux/plugins/tmux/dot_git/branches/.keep b/dot_tmux/plugins/tmux/dot_git/branches/.keep similarity index 100% rename from dot_config/tmux/plugins/tmux/dot_git/branches/.keep rename to dot_tmux/plugins/tmux/dot_git/branches/.keep diff --git a/dot_config/tmux/plugins/tmux/dot_git/config b/dot_tmux/plugins/tmux/dot_git/config similarity index 100% rename from dot_config/tmux/plugins/tmux/dot_git/config rename to dot_tmux/plugins/tmux/dot_git/config diff --git a/dot_config/tmux/plugins/tmux/dot_git/description b/dot_tmux/plugins/tmux/dot_git/description similarity index 100% rename from dot_config/tmux/plugins/tmux/dot_git/description rename to dot_tmux/plugins/tmux/dot_git/description diff --git a/dot_config/tmux/plugins/tmux/dot_git/hooks/executable_applypatch-msg.sample b/dot_tmux/plugins/tmux/dot_git/hooks/executable_applypatch-msg.sample similarity index 100% rename from dot_config/tmux/plugins/tmux/dot_git/hooks/executable_applypatch-msg.sample rename to dot_tmux/plugins/tmux/dot_git/hooks/executable_applypatch-msg.sample diff --git a/dot_config/tmux/plugins/tmux/dot_git/hooks/executable_commit-msg.sample b/dot_tmux/plugins/tmux/dot_git/hooks/executable_commit-msg.sample similarity index 100% rename from dot_config/tmux/plugins/tmux/dot_git/hooks/executable_commit-msg.sample rename to dot_tmux/plugins/tmux/dot_git/hooks/executable_commit-msg.sample diff --git a/dot_config/tmux/plugins/tmux/dot_git/hooks/executable_fsmonitor-watchman.sample b/dot_tmux/plugins/tmux/dot_git/hooks/executable_fsmonitor-watchman.sample similarity index 100% rename from dot_config/tmux/plugins/tmux/dot_git/hooks/executable_fsmonitor-watchman.sample rename to dot_tmux/plugins/tmux/dot_git/hooks/executable_fsmonitor-watchman.sample diff --git a/dot_config/tmux/plugins/tmux/dot_git/hooks/executable_post-update.sample b/dot_tmux/plugins/tmux/dot_git/hooks/executable_post-update.sample similarity index 100% rename from dot_config/tmux/plugins/tmux/dot_git/hooks/executable_post-update.sample rename to dot_tmux/plugins/tmux/dot_git/hooks/executable_post-update.sample diff --git a/dot_config/tmux/plugins/tmux/dot_git/hooks/executable_pre-applypatch.sample b/dot_tmux/plugins/tmux/dot_git/hooks/executable_pre-applypatch.sample similarity index 100% rename from dot_config/tmux/plugins/tmux/dot_git/hooks/executable_pre-applypatch.sample rename to dot_tmux/plugins/tmux/dot_git/hooks/executable_pre-applypatch.sample diff --git a/dot_config/tmux/plugins/tmux/dot_git/hooks/executable_pre-commit.sample b/dot_tmux/plugins/tmux/dot_git/hooks/executable_pre-commit.sample similarity index 100% rename from dot_config/tmux/plugins/tmux/dot_git/hooks/executable_pre-commit.sample rename to dot_tmux/plugins/tmux/dot_git/hooks/executable_pre-commit.sample diff --git a/dot_config/tmux/plugins/tmux/dot_git/hooks/executable_pre-merge-commit.sample b/dot_tmux/plugins/tmux/dot_git/hooks/executable_pre-merge-commit.sample similarity index 100% rename from dot_config/tmux/plugins/tmux/dot_git/hooks/executable_pre-merge-commit.sample rename to dot_tmux/plugins/tmux/dot_git/hooks/executable_pre-merge-commit.sample diff --git a/dot_config/tmux/plugins/tmux/dot_git/hooks/executable_pre-push.sample b/dot_tmux/plugins/tmux/dot_git/hooks/executable_pre-push.sample similarity index 100% rename from dot_config/tmux/plugins/tmux/dot_git/hooks/executable_pre-push.sample rename to dot_tmux/plugins/tmux/dot_git/hooks/executable_pre-push.sample diff --git a/dot_config/tmux/plugins/tmux/dot_git/hooks/executable_pre-rebase.sample b/dot_tmux/plugins/tmux/dot_git/hooks/executable_pre-rebase.sample similarity index 100% rename from dot_config/tmux/plugins/tmux/dot_git/hooks/executable_pre-rebase.sample rename to dot_tmux/plugins/tmux/dot_git/hooks/executable_pre-rebase.sample diff --git a/dot_config/tmux/plugins/tmux/dot_git/hooks/executable_pre-receive.sample b/dot_tmux/plugins/tmux/dot_git/hooks/executable_pre-receive.sample similarity index 100% rename from dot_config/tmux/plugins/tmux/dot_git/hooks/executable_pre-receive.sample rename to dot_tmux/plugins/tmux/dot_git/hooks/executable_pre-receive.sample diff --git a/dot_config/tmux/plugins/tmux/dot_git/hooks/executable_prepare-commit-msg.sample b/dot_tmux/plugins/tmux/dot_git/hooks/executable_prepare-commit-msg.sample similarity index 100% rename from dot_config/tmux/plugins/tmux/dot_git/hooks/executable_prepare-commit-msg.sample rename to dot_tmux/plugins/tmux/dot_git/hooks/executable_prepare-commit-msg.sample diff --git a/dot_config/tmux/plugins/tmux/dot_git/hooks/executable_push-to-checkout.sample b/dot_tmux/plugins/tmux/dot_git/hooks/executable_push-to-checkout.sample similarity index 100% rename from dot_config/tmux/plugins/tmux/dot_git/hooks/executable_push-to-checkout.sample rename to dot_tmux/plugins/tmux/dot_git/hooks/executable_push-to-checkout.sample diff --git a/dot_config/tmux/plugins/tmux/dot_git/hooks/executable_update.sample b/dot_tmux/plugins/tmux/dot_git/hooks/executable_update.sample similarity index 100% rename from dot_config/tmux/plugins/tmux/dot_git/hooks/executable_update.sample rename to dot_tmux/plugins/tmux/dot_git/hooks/executable_update.sample diff --git a/dot_config/tmux/plugins/tmux/dot_git/index b/dot_tmux/plugins/tmux/dot_git/index similarity index 100% rename from dot_config/tmux/plugins/tmux/dot_git/index rename to dot_tmux/plugins/tmux/dot_git/index diff --git a/dot_config/tmux/plugins/tmux/dot_git/info/exclude b/dot_tmux/plugins/tmux/dot_git/info/exclude similarity index 100% rename from dot_config/tmux/plugins/tmux/dot_git/info/exclude rename to dot_tmux/plugins/tmux/dot_git/info/exclude diff --git a/dot_config/tmux/plugins/tmux/dot_git/logs/HEAD b/dot_tmux/plugins/tmux/dot_git/logs/HEAD similarity index 100% rename from dot_config/tmux/plugins/tmux/dot_git/logs/HEAD rename to dot_tmux/plugins/tmux/dot_git/logs/HEAD diff --git a/dot_config/tmux/plugins/tmux/dot_git/logs/refs/heads/master b/dot_tmux/plugins/tmux/dot_git/logs/refs/heads/master similarity index 100% rename from dot_config/tmux/plugins/tmux/dot_git/logs/refs/heads/master rename to dot_tmux/plugins/tmux/dot_git/logs/refs/heads/master diff --git a/dot_config/tmux/plugins/tmux/dot_git/logs/refs/remotes/origin/HEAD b/dot_tmux/plugins/tmux/dot_git/logs/refs/remotes/origin/HEAD similarity index 100% rename from dot_config/tmux/plugins/tmux/dot_git/logs/refs/remotes/origin/HEAD rename to dot_tmux/plugins/tmux/dot_git/logs/refs/remotes/origin/HEAD diff --git a/dot_config/tmux/plugins/tmux/dot_git/objects/info/.keep b/dot_tmux/plugins/tmux/dot_git/objects/info/.keep similarity index 100% rename from dot_config/tmux/plugins/tmux/dot_git/objects/info/.keep rename to dot_tmux/plugins/tmux/dot_git/objects/info/.keep diff --git a/dot_config/tmux/plugins/tmux/dot_git/objects/pack/readonly_pack-1341031aba49f5649186eef4677cb7d91ce56a47.idx b/dot_tmux/plugins/tmux/dot_git/objects/pack/readonly_pack-1341031aba49f5649186eef4677cb7d91ce56a47.idx similarity index 100% rename from dot_config/tmux/plugins/tmux/dot_git/objects/pack/readonly_pack-1341031aba49f5649186eef4677cb7d91ce56a47.idx rename to dot_tmux/plugins/tmux/dot_git/objects/pack/readonly_pack-1341031aba49f5649186eef4677cb7d91ce56a47.idx diff --git a/dot_config/tmux/plugins/tmux/dot_git/objects/pack/readonly_pack-1341031aba49f5649186eef4677cb7d91ce56a47.pack b/dot_tmux/plugins/tmux/dot_git/objects/pack/readonly_pack-1341031aba49f5649186eef4677cb7d91ce56a47.pack similarity index 100% rename from dot_config/tmux/plugins/tmux/dot_git/objects/pack/readonly_pack-1341031aba49f5649186eef4677cb7d91ce56a47.pack rename to dot_tmux/plugins/tmux/dot_git/objects/pack/readonly_pack-1341031aba49f5649186eef4677cb7d91ce56a47.pack diff --git a/dot_config/tmux/plugins/tmux/dot_git/packed-refs b/dot_tmux/plugins/tmux/dot_git/packed-refs similarity index 100% rename from dot_config/tmux/plugins/tmux/dot_git/packed-refs rename to dot_tmux/plugins/tmux/dot_git/packed-refs diff --git a/dot_config/tmux/plugins/tmux/dot_git/refs/heads/master b/dot_tmux/plugins/tmux/dot_git/refs/heads/master similarity index 100% rename from dot_config/tmux/plugins/tmux/dot_git/refs/heads/master rename to dot_tmux/plugins/tmux/dot_git/refs/heads/master diff --git a/dot_config/tmux/plugins/tmux/dot_git/refs/remotes/origin/HEAD b/dot_tmux/plugins/tmux/dot_git/refs/remotes/origin/HEAD similarity index 100% rename from dot_config/tmux/plugins/tmux/dot_git/refs/remotes/origin/HEAD rename to dot_tmux/plugins/tmux/dot_git/refs/remotes/origin/HEAD diff --git a/dot_config/tmux/plugins/tmux/dot_git/refs/tags/v1.0 b/dot_tmux/plugins/tmux/dot_git/refs/tags/v1.0 similarity index 100% rename from dot_config/tmux/plugins/tmux/dot_git/refs/tags/v1.0 rename to dot_tmux/plugins/tmux/dot_git/refs/tags/v1.0 diff --git a/dot_config/tmux/plugins/tmux/dot_git/refs/tags/v1.0.1 b/dot_tmux/plugins/tmux/dot_git/refs/tags/v1.0.1 similarity index 100% rename from dot_config/tmux/plugins/tmux/dot_git/refs/tags/v1.0.1 rename to dot_tmux/plugins/tmux/dot_git/refs/tags/v1.0.1 diff --git a/dot_config/tmux/plugins/tmux/dot_git/refs/tags/v2.0.0 b/dot_tmux/plugins/tmux/dot_git/refs/tags/v2.0.0 similarity index 100% rename from dot_config/tmux/plugins/tmux/dot_git/refs/tags/v2.0.0 rename to dot_tmux/plugins/tmux/dot_git/refs/tags/v2.0.0 diff --git a/dot_config/tmux/plugins/tmux/dot_github/ISSUE_TEMPLATE/bug-report.md b/dot_tmux/plugins/tmux/dot_github/ISSUE_TEMPLATE/bug-report.md similarity index 100% rename from dot_config/tmux/plugins/tmux/dot_github/ISSUE_TEMPLATE/bug-report.md rename to dot_tmux/plugins/tmux/dot_github/ISSUE_TEMPLATE/bug-report.md diff --git a/dot_config/tmux/plugins/tmux/dot_github/ISSUE_TEMPLATE/feature_request.md b/dot_tmux/plugins/tmux/dot_github/ISSUE_TEMPLATE/feature_request.md similarity index 100% rename from dot_config/tmux/plugins/tmux/dot_github/ISSUE_TEMPLATE/feature_request.md rename to dot_tmux/plugins/tmux/dot_github/ISSUE_TEMPLATE/feature_request.md diff --git a/dot_config/tmux/plugins/tmux/dot_github/PULL_REQUEST_TEMPLATE/pull_request_template.md b/dot_tmux/plugins/tmux/dot_github/PULL_REQUEST_TEMPLATE/pull_request_template.md similarity index 100% rename from dot_config/tmux/plugins/tmux/dot_github/PULL_REQUEST_TEMPLATE/pull_request_template.md rename to dot_tmux/plugins/tmux/dot_github/PULL_REQUEST_TEMPLATE/pull_request_template.md diff --git a/dot_config/tmux/plugins/tmux/dot_github/workflows/check-syntax.yml b/dot_tmux/plugins/tmux/dot_github/workflows/check-syntax.yml similarity index 100% rename from dot_config/tmux/plugins/tmux/dot_github/workflows/check-syntax.yml rename to dot_tmux/plugins/tmux/dot_github/workflows/check-syntax.yml diff --git a/dot_config/tmux/plugins/tmux/dot_gitignore b/dot_tmux/plugins/tmux/dot_gitignore similarity index 100% rename from dot_config/tmux/plugins/tmux/dot_gitignore rename to dot_tmux/plugins/tmux/dot_gitignore diff --git a/dot_config/tmux/plugins/tmux/empty_dot_gitmodules b/dot_tmux/plugins/tmux/empty_dot_gitmodules similarity index 100% rename from dot_config/tmux/plugins/tmux/empty_dot_gitmodules rename to dot_tmux/plugins/tmux/empty_dot_gitmodules diff --git a/dot_config/tmux/plugins/tmux/executable_dracula.tmux b/dot_tmux/plugins/tmux/executable_dracula.tmux similarity index 100% rename from dot_config/tmux/plugins/tmux/executable_dracula.tmux rename to dot_tmux/plugins/tmux/executable_dracula.tmux diff --git a/dot_config/tmux/plugins/tmux/screenshot.png b/dot_tmux/plugins/tmux/screenshot.png similarity index 100% rename from dot_config/tmux/plugins/tmux/screenshot.png rename to dot_tmux/plugins/tmux/screenshot.png diff --git a/dot_config/tmux/plugins/tmux/scripts/executable_battery.sh b/dot_tmux/plugins/tmux/scripts/executable_battery.sh similarity index 100% rename from dot_config/tmux/plugins/tmux/scripts/executable_battery.sh rename to dot_tmux/plugins/tmux/scripts/executable_battery.sh diff --git a/dot_config/tmux/plugins/tmux/scripts/executable_cpu_info.sh b/dot_tmux/plugins/tmux/scripts/executable_cpu_info.sh similarity index 100% rename from dot_config/tmux/plugins/tmux/scripts/executable_cpu_info.sh rename to dot_tmux/plugins/tmux/scripts/executable_cpu_info.sh diff --git a/dot_config/tmux/plugins/tmux/scripts/executable_dracula.sh b/dot_tmux/plugins/tmux/scripts/executable_dracula.sh similarity index 100% rename from dot_config/tmux/plugins/tmux/scripts/executable_dracula.sh rename to dot_tmux/plugins/tmux/scripts/executable_dracula.sh diff --git a/dot_config/tmux/plugins/tmux/scripts/executable_git.sh b/dot_tmux/plugins/tmux/scripts/executable_git.sh similarity index 100% rename from dot_config/tmux/plugins/tmux/scripts/executable_git.sh rename to dot_tmux/plugins/tmux/scripts/executable_git.sh diff --git a/dot_config/tmux/plugins/tmux/scripts/executable_gpu_usage.sh b/dot_tmux/plugins/tmux/scripts/executable_gpu_usage.sh similarity index 100% rename from dot_config/tmux/plugins/tmux/scripts/executable_gpu_usage.sh rename to dot_tmux/plugins/tmux/scripts/executable_gpu_usage.sh diff --git a/dot_config/tmux/plugins/tmux/scripts/executable_network.sh b/dot_tmux/plugins/tmux/scripts/executable_network.sh similarity index 100% rename from dot_config/tmux/plugins/tmux/scripts/executable_network.sh rename to dot_tmux/plugins/tmux/scripts/executable_network.sh diff --git a/dot_config/tmux/plugins/tmux/scripts/executable_network_bandwidth.sh b/dot_tmux/plugins/tmux/scripts/executable_network_bandwidth.sh similarity index 100% rename from dot_config/tmux/plugins/tmux/scripts/executable_network_bandwidth.sh rename to dot_tmux/plugins/tmux/scripts/executable_network_bandwidth.sh diff --git a/dot_config/tmux/plugins/tmux/scripts/executable_ram_info.sh b/dot_tmux/plugins/tmux/scripts/executable_ram_info.sh similarity index 100% rename from dot_config/tmux/plugins/tmux/scripts/executable_ram_info.sh rename to dot_tmux/plugins/tmux/scripts/executable_ram_info.sh diff --git a/dot_config/tmux/plugins/tmux/scripts/executable_sleep_weather.sh b/dot_tmux/plugins/tmux/scripts/executable_sleep_weather.sh similarity index 100% rename from dot_config/tmux/plugins/tmux/scripts/executable_sleep_weather.sh rename to dot_tmux/plugins/tmux/scripts/executable_sleep_weather.sh diff --git a/dot_config/tmux/plugins/tmux/scripts/executable_weather.sh b/dot_tmux/plugins/tmux/scripts/executable_weather.sh similarity index 100% rename from dot_config/tmux/plugins/tmux/scripts/executable_weather.sh rename to dot_tmux/plugins/tmux/scripts/executable_weather.sh diff --git a/dot_config/tmux/plugins/tmux/scripts/network_ping.sh b/dot_tmux/plugins/tmux/scripts/network_ping.sh similarity index 100% rename from dot_config/tmux/plugins/tmux/scripts/network_ping.sh rename to dot_tmux/plugins/tmux/scripts/network_ping.sh diff --git a/dot_config/tmux/plugins/tmux/scripts/utils.sh b/dot_tmux/plugins/tmux/scripts/utils.sh similarity index 100% rename from dot_config/tmux/plugins/tmux/scripts/utils.sh rename to dot_tmux/plugins/tmux/scripts/utils.sh diff --git a/dot_config/tmux/plugins/tpm/CHANGELOG.md b/dot_tmux/plugins/tpm/CHANGELOG.md similarity index 100% rename from dot_config/tmux/plugins/tpm/CHANGELOG.md rename to dot_tmux/plugins/tpm/CHANGELOG.md diff --git a/dot_config/tmux/plugins/tpm/HOW_TO_PLUGIN.md b/dot_tmux/plugins/tpm/HOW_TO_PLUGIN.md similarity index 100% rename from dot_config/tmux/plugins/tpm/HOW_TO_PLUGIN.md rename to dot_tmux/plugins/tpm/HOW_TO_PLUGIN.md diff --git a/dot_config/tmux/plugins/tpm/LICENSE.md b/dot_tmux/plugins/tpm/LICENSE.md similarity index 100% rename from dot_config/tmux/plugins/tpm/LICENSE.md rename to dot_tmux/plugins/tpm/LICENSE.md diff --git a/dot_config/tmux/plugins/tpm/README.md b/dot_tmux/plugins/tpm/README.md similarity index 100% rename from dot_config/tmux/plugins/tpm/README.md rename to dot_tmux/plugins/tpm/README.md diff --git a/dot_config/tmux/plugins/tpm/bin/executable_clean_plugins b/dot_tmux/plugins/tpm/bin/executable_clean_plugins similarity index 100% rename from dot_config/tmux/plugins/tpm/bin/executable_clean_plugins rename to dot_tmux/plugins/tpm/bin/executable_clean_plugins diff --git a/dot_config/tmux/plugins/tpm/bin/executable_install_plugins b/dot_tmux/plugins/tpm/bin/executable_install_plugins similarity index 100% rename from dot_config/tmux/plugins/tpm/bin/executable_install_plugins rename to dot_tmux/plugins/tpm/bin/executable_install_plugins diff --git a/dot_config/tmux/plugins/tpm/bin/executable_update_plugins b/dot_tmux/plugins/tpm/bin/executable_update_plugins similarity index 100% rename from dot_config/tmux/plugins/tpm/bin/executable_update_plugins rename to dot_tmux/plugins/tpm/bin/executable_update_plugins diff --git a/dot_config/tmux/plugins/tpm/bindings/executable_clean_plugins b/dot_tmux/plugins/tpm/bindings/executable_clean_plugins similarity index 100% rename from dot_config/tmux/plugins/tpm/bindings/executable_clean_plugins rename to dot_tmux/plugins/tpm/bindings/executable_clean_plugins diff --git a/dot_config/tmux/plugins/tpm/bindings/executable_install_plugins b/dot_tmux/plugins/tpm/bindings/executable_install_plugins similarity index 100% rename from dot_config/tmux/plugins/tpm/bindings/executable_install_plugins rename to dot_tmux/plugins/tpm/bindings/executable_install_plugins diff --git a/dot_config/tmux/plugins/tpm/bindings/executable_update_plugins b/dot_tmux/plugins/tpm/bindings/executable_update_plugins similarity index 100% rename from dot_config/tmux/plugins/tpm/bindings/executable_update_plugins rename to dot_tmux/plugins/tpm/bindings/executable_update_plugins diff --git a/dot_config/tmux/plugins/tpm/docs/automatic_tpm_installation.md b/dot_tmux/plugins/tpm/docs/automatic_tpm_installation.md similarity index 100% rename from dot_config/tmux/plugins/tpm/docs/automatic_tpm_installation.md rename to dot_tmux/plugins/tpm/docs/automatic_tpm_installation.md diff --git a/dot_config/tmux/plugins/tpm/docs/changing_plugins_install_dir.md b/dot_tmux/plugins/tpm/docs/changing_plugins_install_dir.md similarity index 100% rename from dot_config/tmux/plugins/tpm/docs/changing_plugins_install_dir.md rename to dot_tmux/plugins/tpm/docs/changing_plugins_install_dir.md diff --git a/dot_config/tmux/plugins/tpm/docs/how_to_create_plugin.md b/dot_tmux/plugins/tpm/docs/how_to_create_plugin.md similarity index 100% rename from dot_config/tmux/plugins/tpm/docs/how_to_create_plugin.md rename to dot_tmux/plugins/tpm/docs/how_to_create_plugin.md diff --git a/dot_config/tmux/plugins/tpm/docs/managing_plugins_via_cmd_line.md b/dot_tmux/plugins/tpm/docs/managing_plugins_via_cmd_line.md similarity index 100% rename from dot_config/tmux/plugins/tpm/docs/managing_plugins_via_cmd_line.md rename to dot_tmux/plugins/tpm/docs/managing_plugins_via_cmd_line.md diff --git a/dot_config/tmux/plugins/tpm/docs/tpm_not_working.md b/dot_tmux/plugins/tpm/docs/tpm_not_working.md similarity index 100% rename from dot_config/tmux/plugins/tpm/docs/tpm_not_working.md rename to dot_tmux/plugins/tpm/docs/tpm_not_working.md diff --git a/dot_config/tmux/plugins/tpm/dot_git/HEAD b/dot_tmux/plugins/tpm/dot_git/HEAD similarity index 100% rename from dot_config/tmux/plugins/tpm/dot_git/HEAD rename to dot_tmux/plugins/tpm/dot_git/HEAD diff --git a/dot_config/tmux/plugins/tpm/dot_git/branches/.keep b/dot_tmux/plugins/tpm/dot_git/branches/.keep similarity index 100% rename from dot_config/tmux/plugins/tpm/dot_git/branches/.keep rename to dot_tmux/plugins/tpm/dot_git/branches/.keep diff --git a/dot_config/tmux/plugins/tpm/dot_git/config b/dot_tmux/plugins/tpm/dot_git/config similarity index 100% rename from dot_config/tmux/plugins/tpm/dot_git/config rename to dot_tmux/plugins/tpm/dot_git/config diff --git a/dot_config/tmux/plugins/tpm/dot_git/description b/dot_tmux/plugins/tpm/dot_git/description similarity index 100% rename from dot_config/tmux/plugins/tpm/dot_git/description rename to dot_tmux/plugins/tpm/dot_git/description diff --git a/dot_config/tmux/plugins/tpm/dot_git/hooks/executable_applypatch-msg.sample b/dot_tmux/plugins/tpm/dot_git/hooks/executable_applypatch-msg.sample similarity index 100% rename from dot_config/tmux/plugins/tpm/dot_git/hooks/executable_applypatch-msg.sample rename to dot_tmux/plugins/tpm/dot_git/hooks/executable_applypatch-msg.sample diff --git a/dot_config/tmux/plugins/tpm/dot_git/hooks/executable_commit-msg.sample b/dot_tmux/plugins/tpm/dot_git/hooks/executable_commit-msg.sample similarity index 100% rename from dot_config/tmux/plugins/tpm/dot_git/hooks/executable_commit-msg.sample rename to dot_tmux/plugins/tpm/dot_git/hooks/executable_commit-msg.sample diff --git a/dot_config/tmux/plugins/tpm/dot_git/hooks/executable_fsmonitor-watchman.sample b/dot_tmux/plugins/tpm/dot_git/hooks/executable_fsmonitor-watchman.sample similarity index 100% rename from dot_config/tmux/plugins/tpm/dot_git/hooks/executable_fsmonitor-watchman.sample rename to dot_tmux/plugins/tpm/dot_git/hooks/executable_fsmonitor-watchman.sample diff --git a/dot_config/tmux/plugins/tpm/dot_git/hooks/executable_post-update.sample b/dot_tmux/plugins/tpm/dot_git/hooks/executable_post-update.sample similarity index 100% rename from dot_config/tmux/plugins/tpm/dot_git/hooks/executable_post-update.sample rename to dot_tmux/plugins/tpm/dot_git/hooks/executable_post-update.sample diff --git a/dot_config/tmux/plugins/tpm/dot_git/hooks/executable_pre-applypatch.sample b/dot_tmux/plugins/tpm/dot_git/hooks/executable_pre-applypatch.sample similarity index 100% rename from dot_config/tmux/plugins/tpm/dot_git/hooks/executable_pre-applypatch.sample rename to dot_tmux/plugins/tpm/dot_git/hooks/executable_pre-applypatch.sample diff --git a/dot_config/tmux/plugins/tpm/dot_git/hooks/executable_pre-commit.sample b/dot_tmux/plugins/tpm/dot_git/hooks/executable_pre-commit.sample similarity index 100% rename from dot_config/tmux/plugins/tpm/dot_git/hooks/executable_pre-commit.sample rename to dot_tmux/plugins/tpm/dot_git/hooks/executable_pre-commit.sample diff --git a/dot_config/tmux/plugins/tpm/dot_git/hooks/executable_pre-merge-commit.sample b/dot_tmux/plugins/tpm/dot_git/hooks/executable_pre-merge-commit.sample similarity index 100% rename from dot_config/tmux/plugins/tpm/dot_git/hooks/executable_pre-merge-commit.sample rename to dot_tmux/plugins/tpm/dot_git/hooks/executable_pre-merge-commit.sample diff --git a/dot_config/tmux/plugins/tpm/dot_git/hooks/executable_pre-push.sample b/dot_tmux/plugins/tpm/dot_git/hooks/executable_pre-push.sample similarity index 100% rename from dot_config/tmux/plugins/tpm/dot_git/hooks/executable_pre-push.sample rename to dot_tmux/plugins/tpm/dot_git/hooks/executable_pre-push.sample diff --git a/dot_config/tmux/plugins/tpm/dot_git/hooks/executable_pre-rebase.sample b/dot_tmux/plugins/tpm/dot_git/hooks/executable_pre-rebase.sample similarity index 100% rename from dot_config/tmux/plugins/tpm/dot_git/hooks/executable_pre-rebase.sample rename to dot_tmux/plugins/tpm/dot_git/hooks/executable_pre-rebase.sample diff --git a/dot_config/tmux/plugins/tpm/dot_git/hooks/executable_pre-receive.sample b/dot_tmux/plugins/tpm/dot_git/hooks/executable_pre-receive.sample similarity index 100% rename from dot_config/tmux/plugins/tpm/dot_git/hooks/executable_pre-receive.sample rename to dot_tmux/plugins/tpm/dot_git/hooks/executable_pre-receive.sample diff --git a/dot_config/tmux/plugins/tpm/dot_git/hooks/executable_prepare-commit-msg.sample b/dot_tmux/plugins/tpm/dot_git/hooks/executable_prepare-commit-msg.sample similarity index 100% rename from dot_config/tmux/plugins/tpm/dot_git/hooks/executable_prepare-commit-msg.sample rename to dot_tmux/plugins/tpm/dot_git/hooks/executable_prepare-commit-msg.sample diff --git a/dot_config/tmux/plugins/tpm/dot_git/hooks/executable_push-to-checkout.sample b/dot_tmux/plugins/tpm/dot_git/hooks/executable_push-to-checkout.sample similarity index 100% rename from dot_config/tmux/plugins/tpm/dot_git/hooks/executable_push-to-checkout.sample rename to dot_tmux/plugins/tpm/dot_git/hooks/executable_push-to-checkout.sample diff --git a/dot_config/tmux/plugins/tpm/dot_git/hooks/executable_update.sample b/dot_tmux/plugins/tpm/dot_git/hooks/executable_update.sample similarity index 100% rename from dot_config/tmux/plugins/tpm/dot_git/hooks/executable_update.sample rename to dot_tmux/plugins/tpm/dot_git/hooks/executable_update.sample diff --git a/dot_config/tmux/plugins/tpm/dot_git/index b/dot_tmux/plugins/tpm/dot_git/index similarity index 100% rename from dot_config/tmux/plugins/tpm/dot_git/index rename to dot_tmux/plugins/tpm/dot_git/index diff --git a/dot_config/tmux/plugins/tpm/dot_git/info/exclude b/dot_tmux/plugins/tpm/dot_git/info/exclude similarity index 100% rename from dot_config/tmux/plugins/tpm/dot_git/info/exclude rename to dot_tmux/plugins/tpm/dot_git/info/exclude diff --git a/dot_config/tmux/plugins/tpm/dot_git/logs/HEAD b/dot_tmux/plugins/tpm/dot_git/logs/HEAD similarity index 100% rename from dot_config/tmux/plugins/tpm/dot_git/logs/HEAD rename to dot_tmux/plugins/tpm/dot_git/logs/HEAD diff --git a/dot_config/tmux/plugins/tpm/dot_git/logs/refs/heads/master b/dot_tmux/plugins/tpm/dot_git/logs/refs/heads/master similarity index 100% rename from dot_config/tmux/plugins/tpm/dot_git/logs/refs/heads/master rename to dot_tmux/plugins/tpm/dot_git/logs/refs/heads/master diff --git a/dot_config/tmux/plugins/tpm/dot_git/logs/refs/remotes/origin/HEAD b/dot_tmux/plugins/tpm/dot_git/logs/refs/remotes/origin/HEAD similarity index 100% rename from dot_config/tmux/plugins/tpm/dot_git/logs/refs/remotes/origin/HEAD rename to dot_tmux/plugins/tpm/dot_git/logs/refs/remotes/origin/HEAD diff --git a/dot_config/tmux/plugins/tpm/dot_git/modules/lib/tmux-test/HEAD b/dot_tmux/plugins/tpm/dot_git/modules/lib/tmux-test/HEAD similarity index 100% rename from dot_config/tmux/plugins/tpm/dot_git/modules/lib/tmux-test/HEAD rename to dot_tmux/plugins/tpm/dot_git/modules/lib/tmux-test/HEAD diff --git a/dot_config/tmux/plugins/tpm/dot_git/modules/lib/tmux-test/branches/.keep b/dot_tmux/plugins/tpm/dot_git/modules/lib/tmux-test/branches/.keep similarity index 100% rename from dot_config/tmux/plugins/tpm/dot_git/modules/lib/tmux-test/branches/.keep rename to dot_tmux/plugins/tpm/dot_git/modules/lib/tmux-test/branches/.keep diff --git a/dot_config/tmux/plugins/tpm/dot_git/modules/lib/tmux-test/config b/dot_tmux/plugins/tpm/dot_git/modules/lib/tmux-test/config similarity index 100% rename from dot_config/tmux/plugins/tpm/dot_git/modules/lib/tmux-test/config rename to dot_tmux/plugins/tpm/dot_git/modules/lib/tmux-test/config diff --git a/dot_config/tmux/plugins/tpm/dot_git/modules/lib/tmux-test/description b/dot_tmux/plugins/tpm/dot_git/modules/lib/tmux-test/description similarity index 100% rename from dot_config/tmux/plugins/tpm/dot_git/modules/lib/tmux-test/description rename to dot_tmux/plugins/tpm/dot_git/modules/lib/tmux-test/description diff --git a/dot_config/tmux/plugins/tpm/dot_git/modules/lib/tmux-test/hooks/executable_applypatch-msg.sample b/dot_tmux/plugins/tpm/dot_git/modules/lib/tmux-test/hooks/executable_applypatch-msg.sample similarity index 100% rename from dot_config/tmux/plugins/tpm/dot_git/modules/lib/tmux-test/hooks/executable_applypatch-msg.sample rename to dot_tmux/plugins/tpm/dot_git/modules/lib/tmux-test/hooks/executable_applypatch-msg.sample diff --git a/dot_config/tmux/plugins/tpm/dot_git/modules/lib/tmux-test/hooks/executable_commit-msg.sample b/dot_tmux/plugins/tpm/dot_git/modules/lib/tmux-test/hooks/executable_commit-msg.sample similarity index 100% rename from dot_config/tmux/plugins/tpm/dot_git/modules/lib/tmux-test/hooks/executable_commit-msg.sample rename to dot_tmux/plugins/tpm/dot_git/modules/lib/tmux-test/hooks/executable_commit-msg.sample diff --git a/dot_config/tmux/plugins/tpm/dot_git/modules/lib/tmux-test/hooks/executable_fsmonitor-watchman.sample b/dot_tmux/plugins/tpm/dot_git/modules/lib/tmux-test/hooks/executable_fsmonitor-watchman.sample similarity index 100% rename from dot_config/tmux/plugins/tpm/dot_git/modules/lib/tmux-test/hooks/executable_fsmonitor-watchman.sample rename to dot_tmux/plugins/tpm/dot_git/modules/lib/tmux-test/hooks/executable_fsmonitor-watchman.sample diff --git a/dot_config/tmux/plugins/tpm/dot_git/modules/lib/tmux-test/hooks/executable_post-update.sample b/dot_tmux/plugins/tpm/dot_git/modules/lib/tmux-test/hooks/executable_post-update.sample similarity index 100% rename from dot_config/tmux/plugins/tpm/dot_git/modules/lib/tmux-test/hooks/executable_post-update.sample rename to dot_tmux/plugins/tpm/dot_git/modules/lib/tmux-test/hooks/executable_post-update.sample diff --git a/dot_config/tmux/plugins/tpm/dot_git/modules/lib/tmux-test/hooks/executable_pre-applypatch.sample b/dot_tmux/plugins/tpm/dot_git/modules/lib/tmux-test/hooks/executable_pre-applypatch.sample similarity index 100% rename from dot_config/tmux/plugins/tpm/dot_git/modules/lib/tmux-test/hooks/executable_pre-applypatch.sample rename to dot_tmux/plugins/tpm/dot_git/modules/lib/tmux-test/hooks/executable_pre-applypatch.sample diff --git a/dot_config/tmux/plugins/tpm/dot_git/modules/lib/tmux-test/hooks/executable_pre-commit.sample b/dot_tmux/plugins/tpm/dot_git/modules/lib/tmux-test/hooks/executable_pre-commit.sample similarity index 100% rename from dot_config/tmux/plugins/tpm/dot_git/modules/lib/tmux-test/hooks/executable_pre-commit.sample rename to dot_tmux/plugins/tpm/dot_git/modules/lib/tmux-test/hooks/executable_pre-commit.sample diff --git a/dot_config/tmux/plugins/tpm/dot_git/modules/lib/tmux-test/hooks/executable_pre-merge-commit.sample b/dot_tmux/plugins/tpm/dot_git/modules/lib/tmux-test/hooks/executable_pre-merge-commit.sample similarity index 100% rename from dot_config/tmux/plugins/tpm/dot_git/modules/lib/tmux-test/hooks/executable_pre-merge-commit.sample rename to dot_tmux/plugins/tpm/dot_git/modules/lib/tmux-test/hooks/executable_pre-merge-commit.sample diff --git a/dot_config/tmux/plugins/tpm/dot_git/modules/lib/tmux-test/hooks/executable_pre-push.sample b/dot_tmux/plugins/tpm/dot_git/modules/lib/tmux-test/hooks/executable_pre-push.sample similarity index 100% rename from dot_config/tmux/plugins/tpm/dot_git/modules/lib/tmux-test/hooks/executable_pre-push.sample rename to dot_tmux/plugins/tpm/dot_git/modules/lib/tmux-test/hooks/executable_pre-push.sample diff --git a/dot_config/tmux/plugins/tpm/dot_git/modules/lib/tmux-test/hooks/executable_pre-rebase.sample b/dot_tmux/plugins/tpm/dot_git/modules/lib/tmux-test/hooks/executable_pre-rebase.sample similarity index 100% rename from dot_config/tmux/plugins/tpm/dot_git/modules/lib/tmux-test/hooks/executable_pre-rebase.sample rename to dot_tmux/plugins/tpm/dot_git/modules/lib/tmux-test/hooks/executable_pre-rebase.sample diff --git a/dot_config/tmux/plugins/tpm/dot_git/modules/lib/tmux-test/hooks/executable_pre-receive.sample b/dot_tmux/plugins/tpm/dot_git/modules/lib/tmux-test/hooks/executable_pre-receive.sample similarity index 100% rename from dot_config/tmux/plugins/tpm/dot_git/modules/lib/tmux-test/hooks/executable_pre-receive.sample rename to dot_tmux/plugins/tpm/dot_git/modules/lib/tmux-test/hooks/executable_pre-receive.sample diff --git a/dot_config/tmux/plugins/tpm/dot_git/modules/lib/tmux-test/hooks/executable_prepare-commit-msg.sample b/dot_tmux/plugins/tpm/dot_git/modules/lib/tmux-test/hooks/executable_prepare-commit-msg.sample similarity index 100% rename from dot_config/tmux/plugins/tpm/dot_git/modules/lib/tmux-test/hooks/executable_prepare-commit-msg.sample rename to dot_tmux/plugins/tpm/dot_git/modules/lib/tmux-test/hooks/executable_prepare-commit-msg.sample diff --git a/dot_config/tmux/plugins/tpm/dot_git/modules/lib/tmux-test/hooks/executable_push-to-checkout.sample b/dot_tmux/plugins/tpm/dot_git/modules/lib/tmux-test/hooks/executable_push-to-checkout.sample similarity index 100% rename from dot_config/tmux/plugins/tpm/dot_git/modules/lib/tmux-test/hooks/executable_push-to-checkout.sample rename to dot_tmux/plugins/tpm/dot_git/modules/lib/tmux-test/hooks/executable_push-to-checkout.sample diff --git a/dot_config/tmux/plugins/tpm/dot_git/modules/lib/tmux-test/hooks/executable_update.sample b/dot_tmux/plugins/tpm/dot_git/modules/lib/tmux-test/hooks/executable_update.sample similarity index 100% rename from dot_config/tmux/plugins/tpm/dot_git/modules/lib/tmux-test/hooks/executable_update.sample rename to dot_tmux/plugins/tpm/dot_git/modules/lib/tmux-test/hooks/executable_update.sample diff --git a/dot_config/tmux/plugins/tpm/dot_git/modules/lib/tmux-test/index b/dot_tmux/plugins/tpm/dot_git/modules/lib/tmux-test/index similarity index 100% rename from dot_config/tmux/plugins/tpm/dot_git/modules/lib/tmux-test/index rename to dot_tmux/plugins/tpm/dot_git/modules/lib/tmux-test/index diff --git a/dot_config/tmux/plugins/tpm/dot_git/modules/lib/tmux-test/info/exclude b/dot_tmux/plugins/tpm/dot_git/modules/lib/tmux-test/info/exclude similarity index 100% rename from dot_config/tmux/plugins/tpm/dot_git/modules/lib/tmux-test/info/exclude rename to dot_tmux/plugins/tpm/dot_git/modules/lib/tmux-test/info/exclude diff --git a/dot_config/tmux/plugins/tpm/dot_git/modules/lib/tmux-test/logs/HEAD b/dot_tmux/plugins/tpm/dot_git/modules/lib/tmux-test/logs/HEAD similarity index 100% rename from dot_config/tmux/plugins/tpm/dot_git/modules/lib/tmux-test/logs/HEAD rename to dot_tmux/plugins/tpm/dot_git/modules/lib/tmux-test/logs/HEAD diff --git a/dot_config/tmux/plugins/tpm/dot_git/modules/lib/tmux-test/logs/refs/heads/master b/dot_tmux/plugins/tpm/dot_git/modules/lib/tmux-test/logs/refs/heads/master similarity index 100% rename from dot_config/tmux/plugins/tpm/dot_git/modules/lib/tmux-test/logs/refs/heads/master rename to dot_tmux/plugins/tpm/dot_git/modules/lib/tmux-test/logs/refs/heads/master diff --git a/dot_config/tmux/plugins/tpm/dot_git/modules/lib/tmux-test/logs/refs/remotes/origin/HEAD b/dot_tmux/plugins/tpm/dot_git/modules/lib/tmux-test/logs/refs/remotes/origin/HEAD similarity index 100% rename from dot_config/tmux/plugins/tpm/dot_git/modules/lib/tmux-test/logs/refs/remotes/origin/HEAD rename to dot_tmux/plugins/tpm/dot_git/modules/lib/tmux-test/logs/refs/remotes/origin/HEAD diff --git a/dot_config/tmux/plugins/tpm/dot_git/modules/lib/tmux-test/objects/info/.keep b/dot_tmux/plugins/tpm/dot_git/modules/lib/tmux-test/objects/info/.keep similarity index 100% rename from dot_config/tmux/plugins/tpm/dot_git/modules/lib/tmux-test/objects/info/.keep rename to dot_tmux/plugins/tpm/dot_git/modules/lib/tmux-test/objects/info/.keep diff --git a/dot_config/tmux/plugins/tpm/dot_git/modules/lib/tmux-test/objects/pack/readonly_pack-682baae89da52dce28f4e38633aaa4c7d2ae0037.idx b/dot_tmux/plugins/tpm/dot_git/modules/lib/tmux-test/objects/pack/readonly_pack-682baae89da52dce28f4e38633aaa4c7d2ae0037.idx similarity index 100% rename from dot_config/tmux/plugins/tpm/dot_git/modules/lib/tmux-test/objects/pack/readonly_pack-682baae89da52dce28f4e38633aaa4c7d2ae0037.idx rename to dot_tmux/plugins/tpm/dot_git/modules/lib/tmux-test/objects/pack/readonly_pack-682baae89da52dce28f4e38633aaa4c7d2ae0037.idx diff --git a/dot_config/tmux/plugins/tpm/dot_git/modules/lib/tmux-test/objects/pack/readonly_pack-682baae89da52dce28f4e38633aaa4c7d2ae0037.pack b/dot_tmux/plugins/tpm/dot_git/modules/lib/tmux-test/objects/pack/readonly_pack-682baae89da52dce28f4e38633aaa4c7d2ae0037.pack similarity index 100% rename from dot_config/tmux/plugins/tpm/dot_git/modules/lib/tmux-test/objects/pack/readonly_pack-682baae89da52dce28f4e38633aaa4c7d2ae0037.pack rename to dot_tmux/plugins/tpm/dot_git/modules/lib/tmux-test/objects/pack/readonly_pack-682baae89da52dce28f4e38633aaa4c7d2ae0037.pack diff --git a/dot_config/tmux/plugins/tpm/dot_git/modules/lib/tmux-test/packed-refs b/dot_tmux/plugins/tpm/dot_git/modules/lib/tmux-test/packed-refs similarity index 100% rename from dot_config/tmux/plugins/tpm/dot_git/modules/lib/tmux-test/packed-refs rename to dot_tmux/plugins/tpm/dot_git/modules/lib/tmux-test/packed-refs diff --git a/dot_config/tmux/plugins/tpm/dot_git/modules/lib/tmux-test/refs/heads/master b/dot_tmux/plugins/tpm/dot_git/modules/lib/tmux-test/refs/heads/master similarity index 100% rename from dot_config/tmux/plugins/tpm/dot_git/modules/lib/tmux-test/refs/heads/master rename to dot_tmux/plugins/tpm/dot_git/modules/lib/tmux-test/refs/heads/master diff --git a/dot_config/tmux/plugins/tpm/dot_git/modules/lib/tmux-test/refs/remotes/origin/HEAD b/dot_tmux/plugins/tpm/dot_git/modules/lib/tmux-test/refs/remotes/origin/HEAD similarity index 100% rename from dot_config/tmux/plugins/tpm/dot_git/modules/lib/tmux-test/refs/remotes/origin/HEAD rename to dot_tmux/plugins/tpm/dot_git/modules/lib/tmux-test/refs/remotes/origin/HEAD diff --git a/dot_config/tmux/plugins/tpm/dot_git/modules/lib/tmux-test/refs/tags/v0.0.1 b/dot_tmux/plugins/tpm/dot_git/modules/lib/tmux-test/refs/tags/v0.0.1 similarity index 100% rename from dot_config/tmux/plugins/tpm/dot_git/modules/lib/tmux-test/refs/tags/v0.0.1 rename to dot_tmux/plugins/tpm/dot_git/modules/lib/tmux-test/refs/tags/v0.0.1 diff --git a/dot_config/tmux/plugins/tpm/dot_git/modules/lib/tmux-test/refs/tags/v0.1.0 b/dot_tmux/plugins/tpm/dot_git/modules/lib/tmux-test/refs/tags/v0.1.0 similarity index 100% rename from dot_config/tmux/plugins/tpm/dot_git/modules/lib/tmux-test/refs/tags/v0.1.0 rename to dot_tmux/plugins/tpm/dot_git/modules/lib/tmux-test/refs/tags/v0.1.0 diff --git a/dot_config/tmux/plugins/tpm/dot_git/modules/lib/tmux-test/refs/tags/v0.2.0 b/dot_tmux/plugins/tpm/dot_git/modules/lib/tmux-test/refs/tags/v0.2.0 similarity index 100% rename from dot_config/tmux/plugins/tpm/dot_git/modules/lib/tmux-test/refs/tags/v0.2.0 rename to dot_tmux/plugins/tpm/dot_git/modules/lib/tmux-test/refs/tags/v0.2.0 diff --git a/dot_config/tmux/plugins/tpm/dot_git/objects/info/.keep b/dot_tmux/plugins/tpm/dot_git/objects/info/.keep similarity index 100% rename from dot_config/tmux/plugins/tpm/dot_git/objects/info/.keep rename to dot_tmux/plugins/tpm/dot_git/objects/info/.keep diff --git a/dot_config/tmux/plugins/tpm/dot_git/objects/pack/readonly_pack-4eb09438ed3ad78e1d449b544d8322a6edc3eb08.idx b/dot_tmux/plugins/tpm/dot_git/objects/pack/readonly_pack-4eb09438ed3ad78e1d449b544d8322a6edc3eb08.idx similarity index 100% rename from dot_config/tmux/plugins/tpm/dot_git/objects/pack/readonly_pack-4eb09438ed3ad78e1d449b544d8322a6edc3eb08.idx rename to dot_tmux/plugins/tpm/dot_git/objects/pack/readonly_pack-4eb09438ed3ad78e1d449b544d8322a6edc3eb08.idx diff --git a/dot_config/tmux/plugins/tpm/dot_git/objects/pack/readonly_pack-4eb09438ed3ad78e1d449b544d8322a6edc3eb08.pack b/dot_tmux/plugins/tpm/dot_git/objects/pack/readonly_pack-4eb09438ed3ad78e1d449b544d8322a6edc3eb08.pack similarity index 100% rename from dot_config/tmux/plugins/tpm/dot_git/objects/pack/readonly_pack-4eb09438ed3ad78e1d449b544d8322a6edc3eb08.pack rename to dot_tmux/plugins/tpm/dot_git/objects/pack/readonly_pack-4eb09438ed3ad78e1d449b544d8322a6edc3eb08.pack diff --git a/dot_config/tmux/plugins/tpm/dot_git/packed-refs b/dot_tmux/plugins/tpm/dot_git/packed-refs similarity index 100% rename from dot_config/tmux/plugins/tpm/dot_git/packed-refs rename to dot_tmux/plugins/tpm/dot_git/packed-refs diff --git a/dot_config/tmux/plugins/tpm/dot_git/refs/heads/master b/dot_tmux/plugins/tpm/dot_git/refs/heads/master similarity index 100% rename from dot_config/tmux/plugins/tpm/dot_git/refs/heads/master rename to dot_tmux/plugins/tpm/dot_git/refs/heads/master diff --git a/dot_config/tmux/plugins/tpm/dot_git/refs/remotes/origin/HEAD b/dot_tmux/plugins/tpm/dot_git/refs/remotes/origin/HEAD similarity index 100% rename from dot_config/tmux/plugins/tpm/dot_git/refs/remotes/origin/HEAD rename to dot_tmux/plugins/tpm/dot_git/refs/remotes/origin/HEAD diff --git a/dot_config/tmux/plugins/tpm/dot_git/refs/tags/v0.0.1 b/dot_tmux/plugins/tpm/dot_git/refs/tags/v0.0.1 similarity index 100% rename from dot_config/tmux/plugins/tpm/dot_git/refs/tags/v0.0.1 rename to dot_tmux/plugins/tpm/dot_git/refs/tags/v0.0.1 diff --git a/dot_config/tmux/plugins/tpm/dot_git/refs/tags/v0.0.2 b/dot_tmux/plugins/tpm/dot_git/refs/tags/v0.0.2 similarity index 100% rename from dot_config/tmux/plugins/tpm/dot_git/refs/tags/v0.0.2 rename to dot_tmux/plugins/tpm/dot_git/refs/tags/v0.0.2 diff --git a/dot_config/tmux/plugins/tpm/dot_git/refs/tags/v1.0.0 b/dot_tmux/plugins/tpm/dot_git/refs/tags/v1.0.0 similarity index 100% rename from dot_config/tmux/plugins/tpm/dot_git/refs/tags/v1.0.0 rename to dot_tmux/plugins/tpm/dot_git/refs/tags/v1.0.0 diff --git a/dot_config/tmux/plugins/tpm/dot_git/refs/tags/v1.1.0 b/dot_tmux/plugins/tpm/dot_git/refs/tags/v1.1.0 similarity index 100% rename from dot_config/tmux/plugins/tpm/dot_git/refs/tags/v1.1.0 rename to dot_tmux/plugins/tpm/dot_git/refs/tags/v1.1.0 diff --git a/dot_config/tmux/plugins/tpm/dot_git/refs/tags/v1.2.0 b/dot_tmux/plugins/tpm/dot_git/refs/tags/v1.2.0 similarity index 100% rename from dot_config/tmux/plugins/tpm/dot_git/refs/tags/v1.2.0 rename to dot_tmux/plugins/tpm/dot_git/refs/tags/v1.2.0 diff --git a/dot_config/tmux/plugins/tpm/dot_git/refs/tags/v1.2.1 b/dot_tmux/plugins/tpm/dot_git/refs/tags/v1.2.1 similarity index 100% rename from dot_config/tmux/plugins/tpm/dot_git/refs/tags/v1.2.1 rename to dot_tmux/plugins/tpm/dot_git/refs/tags/v1.2.1 diff --git a/dot_config/tmux/plugins/tpm/dot_git/refs/tags/v1.2.2 b/dot_tmux/plugins/tpm/dot_git/refs/tags/v1.2.2 similarity index 100% rename from dot_config/tmux/plugins/tpm/dot_git/refs/tags/v1.2.2 rename to dot_tmux/plugins/tpm/dot_git/refs/tags/v1.2.2 diff --git a/dot_config/tmux/plugins/tpm/dot_git/refs/tags/v2.0.0 b/dot_tmux/plugins/tpm/dot_git/refs/tags/v2.0.0 similarity index 100% rename from dot_config/tmux/plugins/tpm/dot_git/refs/tags/v2.0.0 rename to dot_tmux/plugins/tpm/dot_git/refs/tags/v2.0.0 diff --git a/dot_config/tmux/plugins/tpm/dot_git/refs/tags/v3.0.0 b/dot_tmux/plugins/tpm/dot_git/refs/tags/v3.0.0 similarity index 100% rename from dot_config/tmux/plugins/tpm/dot_git/refs/tags/v3.0.0 rename to dot_tmux/plugins/tpm/dot_git/refs/tags/v3.0.0 diff --git a/dot_config/tmux/plugins/tpm/dot_gitattributes b/dot_tmux/plugins/tpm/dot_gitattributes similarity index 100% rename from dot_config/tmux/plugins/tpm/dot_gitattributes rename to dot_tmux/plugins/tpm/dot_gitattributes diff --git a/dot_config/tmux/plugins/tpm/dot_gitignore b/dot_tmux/plugins/tpm/dot_gitignore similarity index 100% rename from dot_config/tmux/plugins/tpm/dot_gitignore rename to dot_tmux/plugins/tpm/dot_gitignore diff --git a/dot_config/tmux/plugins/tpm/dot_gitmodules b/dot_tmux/plugins/tpm/dot_gitmodules similarity index 100% rename from dot_config/tmux/plugins/tpm/dot_gitmodules rename to dot_tmux/plugins/tpm/dot_gitmodules diff --git a/dot_config/tmux/plugins/tpm/dot_travis.yml b/dot_tmux/plugins/tpm/dot_travis.yml similarity index 100% rename from dot_config/tmux/plugins/tpm/dot_travis.yml rename to dot_tmux/plugins/tpm/dot_travis.yml diff --git a/dot_config/tmux/plugins/tpm/executable_tpm b/dot_tmux/plugins/tpm/executable_tpm similarity index 100% rename from dot_config/tmux/plugins/tpm/executable_tpm rename to dot_tmux/plugins/tpm/executable_tpm diff --git a/dot_config/tmux/plugins/tpm/lib/tmux-test/CHANGELOG.md b/dot_tmux/plugins/tpm/lib/tmux-test/CHANGELOG.md similarity index 100% rename from dot_config/tmux/plugins/tpm/lib/tmux-test/CHANGELOG.md rename to dot_tmux/plugins/tpm/lib/tmux-test/CHANGELOG.md diff --git a/dot_config/tmux/plugins/tpm/lib/tmux-test/LICENSE.md b/dot_tmux/plugins/tpm/lib/tmux-test/LICENSE.md similarity index 100% rename from dot_config/tmux/plugins/tpm/lib/tmux-test/LICENSE.md rename to dot_tmux/plugins/tpm/lib/tmux-test/LICENSE.md diff --git a/dot_config/tmux/plugins/tpm/lib/tmux-test/README.md b/dot_tmux/plugins/tpm/lib/tmux-test/README.md similarity index 100% rename from dot_config/tmux/plugins/tpm/lib/tmux-test/README.md rename to dot_tmux/plugins/tpm/lib/tmux-test/README.md diff --git a/dot_config/tmux/plugins/tpm/lib/tmux-test/Vagrantfile b/dot_tmux/plugins/tpm/lib/tmux-test/Vagrantfile similarity index 100% rename from dot_config/tmux/plugins/tpm/lib/tmux-test/Vagrantfile rename to dot_tmux/plugins/tpm/lib/tmux-test/Vagrantfile diff --git a/dot_config/tmux/plugins/tpm/lib/tmux-test/dot_git b/dot_tmux/plugins/tpm/lib/tmux-test/dot_git similarity index 100% rename from dot_config/tmux/plugins/tpm/lib/tmux-test/dot_git rename to dot_tmux/plugins/tpm/lib/tmux-test/dot_git diff --git a/dot_config/tmux/plugins/tpm/lib/tmux-test/dot_gitignore b/dot_tmux/plugins/tpm/lib/tmux-test/dot_gitignore similarity index 100% rename from dot_config/tmux/plugins/tpm/lib/tmux-test/dot_gitignore rename to dot_tmux/plugins/tpm/lib/tmux-test/dot_gitignore diff --git a/dot_config/tmux/plugins/tpm/lib/tmux-test/dot_travis.yml b/dot_tmux/plugins/tpm/lib/tmux-test/dot_travis.yml similarity index 100% rename from dot_config/tmux/plugins/tpm/lib/tmux-test/dot_travis.yml rename to dot_tmux/plugins/tpm/lib/tmux-test/dot_travis.yml diff --git a/dot_config/tmux/plugins/tpm/lib/tmux-test/executable_literal_run_framework_tests b/dot_tmux/plugins/tpm/lib/tmux-test/executable_literal_run_framework_tests similarity index 100% rename from dot_config/tmux/plugins/tpm/lib/tmux-test/executable_literal_run_framework_tests rename to dot_tmux/plugins/tpm/lib/tmux-test/executable_literal_run_framework_tests diff --git a/dot_config/tmux/plugins/tpm/lib/tmux-test/executable_literal_run_tests b/dot_tmux/plugins/tpm/lib/tmux-test/executable_literal_run_tests similarity index 100% rename from dot_config/tmux/plugins/tpm/lib/tmux-test/executable_literal_run_tests rename to dot_tmux/plugins/tpm/lib/tmux-test/executable_literal_run_tests diff --git a/dot_config/tmux/plugins/tpm/lib/tmux-test/executable_setup b/dot_tmux/plugins/tpm/lib/tmux-test/executable_setup similarity index 100% rename from dot_config/tmux/plugins/tpm/lib/tmux-test/executable_setup rename to dot_tmux/plugins/tpm/lib/tmux-test/executable_setup diff --git a/dot_config/tmux/plugins/tpm/lib/tmux-test/tests/executable_literal_run_tests_in_isolation b/dot_tmux/plugins/tpm/lib/tmux-test/tests/executable_literal_run_tests_in_isolation similarity index 100% rename from dot_config/tmux/plugins/tpm/lib/tmux-test/tests/executable_literal_run_tests_in_isolation rename to dot_tmux/plugins/tpm/lib/tmux-test/tests/executable_literal_run_tests_in_isolation diff --git a/dot_config/tmux/plugins/tpm/lib/tmux-test/tests/executable_test_basic_script_execution.sh b/dot_tmux/plugins/tpm/lib/tmux-test/tests/executable_test_basic_script_execution.sh similarity index 100% rename from dot_config/tmux/plugins/tpm/lib/tmux-test/tests/executable_test_basic_script_execution.sh rename to dot_tmux/plugins/tpm/lib/tmux-test/tests/executable_test_basic_script_execution.sh diff --git a/dot_config/tmux/plugins/tpm/lib/tmux-test/tests/executable_test_default_session_name.sh b/dot_tmux/plugins/tpm/lib/tmux-test/tests/executable_test_default_session_name.sh similarity index 100% rename from dot_config/tmux/plugins/tpm/lib/tmux-test/tests/executable_test_default_session_name.sh rename to dot_tmux/plugins/tpm/lib/tmux-test/tests/executable_test_default_session_name.sh diff --git a/dot_config/tmux/plugins/tpm/lib/tmux-test/tests/executable_test_tmux_scripting.sh b/dot_tmux/plugins/tpm/lib/tmux-test/tests/executable_test_tmux_scripting.sh similarity index 100% rename from dot_config/tmux/plugins/tpm/lib/tmux-test/tests/executable_test_tmux_scripting.sh rename to dot_tmux/plugins/tpm/lib/tmux-test/tests/executable_test_tmux_scripting.sh diff --git a/dot_config/tmux/plugins/tpm/lib/tmux-test/tests/helpers/helpers.sh b/dot_tmux/plugins/tpm/lib/tmux-test/tests/helpers/helpers.sh similarity index 100% rename from dot_config/tmux/plugins/tpm/lib/tmux-test/tests/helpers/helpers.sh rename to dot_tmux/plugins/tpm/lib/tmux-test/tests/helpers/helpers.sh diff --git a/dot_config/tmux/plugins/tpm/lib/tmux-test/vagrant_centos_provisioning.sh b/dot_tmux/plugins/tpm/lib/tmux-test/vagrant_centos_provisioning.sh similarity index 100% rename from dot_config/tmux/plugins/tpm/lib/tmux-test/vagrant_centos_provisioning.sh rename to dot_tmux/plugins/tpm/lib/tmux-test/vagrant_centos_provisioning.sh diff --git a/dot_config/tmux/plugins/tpm/lib/tmux-test/vagrant_ubuntu_provisioning.sh b/dot_tmux/plugins/tpm/lib/tmux-test/vagrant_ubuntu_provisioning.sh similarity index 100% rename from dot_config/tmux/plugins/tpm/lib/tmux-test/vagrant_ubuntu_provisioning.sh rename to dot_tmux/plugins/tpm/lib/tmux-test/vagrant_ubuntu_provisioning.sh diff --git a/dot_config/tmux/plugins/tpm/scripts/executable_check_tmux_version.sh b/dot_tmux/plugins/tpm/scripts/executable_check_tmux_version.sh similarity index 100% rename from dot_config/tmux/plugins/tpm/scripts/executable_check_tmux_version.sh rename to dot_tmux/plugins/tpm/scripts/executable_check_tmux_version.sh diff --git a/dot_config/tmux/plugins/tpm/scripts/executable_clean_plugins.sh b/dot_tmux/plugins/tpm/scripts/executable_clean_plugins.sh similarity index 100% rename from dot_config/tmux/plugins/tpm/scripts/executable_clean_plugins.sh rename to dot_tmux/plugins/tpm/scripts/executable_clean_plugins.sh diff --git a/dot_config/tmux/plugins/tpm/scripts/executable_install_plugins.sh b/dot_tmux/plugins/tpm/scripts/executable_install_plugins.sh similarity index 100% rename from dot_config/tmux/plugins/tpm/scripts/executable_install_plugins.sh rename to dot_tmux/plugins/tpm/scripts/executable_install_plugins.sh diff --git a/dot_config/tmux/plugins/tpm/scripts/executable_source_plugins.sh b/dot_tmux/plugins/tpm/scripts/executable_source_plugins.sh similarity index 100% rename from dot_config/tmux/plugins/tpm/scripts/executable_source_plugins.sh rename to dot_tmux/plugins/tpm/scripts/executable_source_plugins.sh diff --git a/dot_config/tmux/plugins/tpm/scripts/executable_update_plugin.sh b/dot_tmux/plugins/tpm/scripts/executable_update_plugin.sh similarity index 100% rename from dot_config/tmux/plugins/tpm/scripts/executable_update_plugin.sh rename to dot_tmux/plugins/tpm/scripts/executable_update_plugin.sh diff --git a/dot_config/tmux/plugins/tpm/scripts/executable_update_plugin_prompt_handler.sh b/dot_tmux/plugins/tpm/scripts/executable_update_plugin_prompt_handler.sh similarity index 100% rename from dot_config/tmux/plugins/tpm/scripts/executable_update_plugin_prompt_handler.sh rename to dot_tmux/plugins/tpm/scripts/executable_update_plugin_prompt_handler.sh diff --git a/dot_config/tmux/plugins/tpm/scripts/helpers/plugin_functions.sh b/dot_tmux/plugins/tpm/scripts/helpers/plugin_functions.sh similarity index 100% rename from dot_config/tmux/plugins/tpm/scripts/helpers/plugin_functions.sh rename to dot_tmux/plugins/tpm/scripts/helpers/plugin_functions.sh diff --git a/dot_config/tmux/plugins/tpm/scripts/helpers/shell_echo_functions.sh b/dot_tmux/plugins/tpm/scripts/helpers/shell_echo_functions.sh similarity index 100% rename from dot_config/tmux/plugins/tpm/scripts/helpers/shell_echo_functions.sh rename to dot_tmux/plugins/tpm/scripts/helpers/shell_echo_functions.sh diff --git a/dot_config/tmux/plugins/tpm/scripts/helpers/tmux_echo_functions.sh b/dot_tmux/plugins/tpm/scripts/helpers/tmux_echo_functions.sh similarity index 100% rename from dot_config/tmux/plugins/tpm/scripts/helpers/tmux_echo_functions.sh rename to dot_tmux/plugins/tpm/scripts/helpers/tmux_echo_functions.sh diff --git a/dot_config/tmux/plugins/tpm/scripts/helpers/tmux_utils.sh b/dot_tmux/plugins/tpm/scripts/helpers/tmux_utils.sh similarity index 100% rename from dot_config/tmux/plugins/tpm/scripts/helpers/tmux_utils.sh rename to dot_tmux/plugins/tpm/scripts/helpers/tmux_utils.sh diff --git a/dot_config/tmux/plugins/tpm/scripts/helpers/utility.sh b/dot_tmux/plugins/tpm/scripts/helpers/utility.sh similarity index 100% rename from dot_config/tmux/plugins/tpm/scripts/helpers/utility.sh rename to dot_tmux/plugins/tpm/scripts/helpers/utility.sh diff --git a/dot_config/tmux/plugins/tpm/scripts/variables.sh b/dot_tmux/plugins/tpm/scripts/variables.sh similarity index 100% rename from dot_config/tmux/plugins/tpm/scripts/variables.sh rename to dot_tmux/plugins/tpm/scripts/variables.sh diff --git a/dot_config/tmux/plugins/tpm/tests/executable_expect_failed_plugin_download b/dot_tmux/plugins/tpm/tests/executable_expect_failed_plugin_download similarity index 100% rename from dot_config/tmux/plugins/tpm/tests/executable_expect_failed_plugin_download rename to dot_tmux/plugins/tpm/tests/executable_expect_failed_plugin_download diff --git a/dot_config/tmux/plugins/tpm/tests/executable_expect_successful_clean_plugins b/dot_tmux/plugins/tpm/tests/executable_expect_successful_clean_plugins similarity index 100% rename from dot_config/tmux/plugins/tpm/tests/executable_expect_successful_clean_plugins rename to dot_tmux/plugins/tpm/tests/executable_expect_successful_clean_plugins diff --git a/dot_config/tmux/plugins/tpm/tests/executable_expect_successful_multiple_plugins_download b/dot_tmux/plugins/tpm/tests/executable_expect_successful_multiple_plugins_download similarity index 100% rename from dot_config/tmux/plugins/tpm/tests/executable_expect_successful_multiple_plugins_download rename to dot_tmux/plugins/tpm/tests/executable_expect_successful_multiple_plugins_download diff --git a/dot_config/tmux/plugins/tpm/tests/executable_expect_successful_plugin_download b/dot_tmux/plugins/tpm/tests/executable_expect_successful_plugin_download similarity index 100% rename from dot_config/tmux/plugins/tpm/tests/executable_expect_successful_plugin_download rename to dot_tmux/plugins/tpm/tests/executable_expect_successful_plugin_download diff --git a/dot_config/tmux/plugins/tpm/tests/executable_expect_successful_update_of_a_single_plugin b/dot_tmux/plugins/tpm/tests/executable_expect_successful_update_of_a_single_plugin similarity index 100% rename from dot_config/tmux/plugins/tpm/tests/executable_expect_successful_update_of_a_single_plugin rename to dot_tmux/plugins/tpm/tests/executable_expect_successful_update_of_a_single_plugin diff --git a/dot_config/tmux/plugins/tpm/tests/executable_expect_successful_update_of_all_plugins b/dot_tmux/plugins/tpm/tests/executable_expect_successful_update_of_all_plugins similarity index 100% rename from dot_config/tmux/plugins/tpm/tests/executable_expect_successful_update_of_all_plugins rename to dot_tmux/plugins/tpm/tests/executable_expect_successful_update_of_all_plugins diff --git a/dot_config/tmux/plugins/tpm/tests/executable_test_plugin_clean.sh b/dot_tmux/plugins/tpm/tests/executable_test_plugin_clean.sh similarity index 100% rename from dot_config/tmux/plugins/tpm/tests/executable_test_plugin_clean.sh rename to dot_tmux/plugins/tpm/tests/executable_test_plugin_clean.sh diff --git a/dot_config/tmux/plugins/tpm/tests/executable_test_plugin_installation.sh b/dot_tmux/plugins/tpm/tests/executable_test_plugin_installation.sh similarity index 100% rename from dot_config/tmux/plugins/tpm/tests/executable_test_plugin_installation.sh rename to dot_tmux/plugins/tpm/tests/executable_test_plugin_installation.sh diff --git a/dot_config/tmux/plugins/tpm/tests/executable_test_plugin_installation_legacy.sh b/dot_tmux/plugins/tpm/tests/executable_test_plugin_installation_legacy.sh similarity index 100% rename from dot_config/tmux/plugins/tpm/tests/executable_test_plugin_installation_legacy.sh rename to dot_tmux/plugins/tpm/tests/executable_test_plugin_installation_legacy.sh diff --git a/dot_config/tmux/plugins/tpm/tests/executable_test_plugin_sourcing.sh b/dot_tmux/plugins/tpm/tests/executable_test_plugin_sourcing.sh similarity index 100% rename from dot_config/tmux/plugins/tpm/tests/executable_test_plugin_sourcing.sh rename to dot_tmux/plugins/tpm/tests/executable_test_plugin_sourcing.sh diff --git a/dot_config/tmux/plugins/tpm/tests/executable_test_plugin_update.sh b/dot_tmux/plugins/tpm/tests/executable_test_plugin_update.sh similarity index 100% rename from dot_config/tmux/plugins/tpm/tests/executable_test_plugin_update.sh rename to dot_tmux/plugins/tpm/tests/executable_test_plugin_update.sh diff --git a/dot_config/tmux/plugins/tpm/tests/helpers/tpm.sh b/dot_tmux/plugins/tpm/tests/helpers/tpm.sh similarity index 100% rename from dot_config/tmux/plugins/tpm/tests/helpers/tpm.sh rename to dot_tmux/plugins/tpm/tests/helpers/tpm.sh