I'm very noob, I created this minimal config file to use it, but it doesn't appear at all:
# Remap
unbind C-b
set -g prefix C-a
bind-key a send-prefix
set-environment -g TMUX_PLUGIN_MANAGER_PATH "$HOME/.config/tmux/plugins/"
set -g @plugin "tmux-plugins/tpm"
set -g @plugin "alexwforsythe/tmux-which-key"
set -g @tmux-which-key-xdg-enable 1
set -g @tmux-which-key-xdg-plugin-path "tmux/plugins/tmux-which-key"
run '~/.config/tmux/plugins/tpm/tpm'
Pressing C-a I and C-a<space> doesn't do anything. If I try C-a:show-wk-menu-root it says "unknown command: show-wk-menu-root".
I'm very newbie, maybe I'm missing something important here.
This is my ~/.config/tmux/ config directory:
.
├── plugins
│ ├── tmux-power
│ │ ├── FUNDING.yml
│ │ ├── LICENSE
│ │ ├── README.md
│ │ └── tmux-power.tmux
│ ├── tmux-which-key
│ │ ├── demo
│ │ │ ├── demo.tape
│ │ │ ├── layouts.tape
│ │ │ ├── macros.tape
│ │ │ ├── navigation.tape
│ │ │ └── screenshot.tape
│ │ ├── plugin
│ │ │ ├── pyyaml
│ │ │ ├── build.py
│ │ │ ├── init.example.tmux
│ │ │ └── init.tmux
│ │ ├── config.example.yaml
│ │ ├── config.schema.yaml
│ │ ├── config.yaml
│ │ ├── LICENSE
│ │ ├── plugin.sh.tmux
│ │ ├── README.md
│ │ └── which-key.sh
│ └── tpm
│ ├── bin
│ │ ├── clean_plugins
│ │ ├── install_plugins
│ │ └── update_plugins
│ ├── bindings
│ │ ├── clean_plugins
│ │ ├── install_plugins
│ │ └── update_plugins
│ ├── docs
│ │ ├── automatic_tpm_installation.md
│ │ ├── changing_plugins_install_dir.md
│ │ ├── how_to_create_plugin.md
│ │ ├── managing_plugins_via_cmd_line.md
│ │ └── tpm_not_working.md
│ ├── lib
│ │ └── tmux-test
│ ├── scripts
│ │ ├── helpers
│ │ │ ├── plugin_functions.sh
│ │ │ ├── shell_echo_functions.sh
│ │ │ ├── tmux_echo_functions.sh
│ │ │ ├── tmux_utils.sh
│ │ │ └── utility.sh
│ │ ├── check_tmux_version.sh
│ │ ├── clean_plugins.sh
│ │ ├── install_plugins.sh
│ │ ├── source_plugins.sh
│ │ ├── update_plugin.sh
│ │ ├── update_plugin_prompt_handler.sh
│ │ └── variables.sh
│ ├── tests
│ │ ├── helpers
│ │ │ └── tpm.sh
│ │ ├── expect_failed_plugin_download
│ │ ├── expect_successful_clean_plugins
│ │ ├── expect_successful_multiple_plugins_download
│ │ ├── expect_successful_plugin_download
│ │ ├── expect_successful_update_of_a_single_plugin
│ │ ├── expect_successful_update_of_all_plugins
│ │ ├── test_plugin_clean.sh
│ │ ├── test_plugin_installation.sh
│ │ ├── test_plugin_installation_legacy.sh
│ │ ├── test_plugin_sourcing.sh
│ │ └── test_plugin_update.sh
│ ├── CHANGELOG.md
│ ├── HOW_TO_PLUGIN.md
│ ├── LICENSE.md
│ ├── README.md
│ └── tpm
├── tmux-minimal.conf
└── tmux.conf
I'm loading this config using tmux -f ~/.config/tmux/tmux-minimal.conf on Kitty on Arch Linux.
I'm very noob, I created this minimal config file to use it, but it doesn't appear at all:
Pressing
C-a IandC-a<space>doesn't do anything. If I tryC-a:show-wk-menu-rootit says "unknown command: show-wk-menu-root".I'm very newbie, maybe I'm missing something important here.
This is my ~/.config/tmux/ config directory:
I'm loading this config using
tmux -f ~/.config/tmux/tmux-minimal.confon Kitty on Arch Linux.