This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # 设置前缀键为 Alt + ` | |
| set -g prefix M-` | |
| # 取消默认的前缀键绑定 | |
| unbind C-b | |
| # 绑定 Alt + ` 作为新的前缀键 | |
| bind M-` send-prefix | |
| set -g mouse on | |
| setw -g mode-keys vi | |
| bind '"' split-window -c '#{pane_current_path}' |