exa required

This commit is contained in:
Tomasz Kapias 2023-03-19 02:48:08 +07:00
parent 43d66b0c02
commit ea4e04fc5a
Signed by: tkapias
SSH key fingerprint: SHA256:bsmasrX7y0xxAHa/x1x8zAgHInO4nPpKMk5JIQ0Vsbw
2 changed files with 9 additions and 5 deletions

View file

@ -15,11 +15,14 @@
- [tpm][tpm]: Plugin Manager. - [tpm][tpm]: Plugin Manager.
- [tmux-prefix-highlight][tmux-prefix-highlight]: highlights when you press tmux prefix key. - [tmux-prefix-highlight][tmux-prefix-highlight]: highlights when you press tmux prefix key.
- [tmux-menus][tmux-menus]: Popup menus. - [tmux-menus][tmux-menus]: Popup menus.
- [extrakto][extrakto]: quickly select, copy/insert/complete text without a mouse. - [extrakto][extrakto]: select, copy/insert/complete text without a mouse (prefix Tab).
- [tmux-sidebar][tmux-sidebar]: directory tree for the current path. - [tmux-sidebar][tmux-sidebar]: directory tree for the current path.
- Usage of tmux popups & fzf. - Prefix rebinded to `Ctrl+x` (`Ctrl+w` for remote/ssh sessions).
- Some defaults are now rewritten as toggle modes, like sync or zoom. - Toggle Sync mode for visible panes with `Prefix-a`.
- Simple color theme with true colors. - Toggle Zoom current Pane with `Prefix-Z`. Next & Previous: `Prefix-e`,`Prefix-z`.
- Open a popup session changer with `Prefix-Ctrl+j`.
- Open a popup Scratch session with `Prefix-Ctrl+g`.
- Nice status (display current command) & color theme with true colors.
- Compatible with my environment config: [bashrc][bashrc_repo]. - Compatible with my environment config: [bashrc][bashrc_repo].
- Check more in the conf file … - Check more in the conf file …
@ -30,6 +33,7 @@
- ncurses (apt or [build][ncurses_repo]) - ncurses (apt or [build][ncurses_repo])
- [Gitmux][gitmux_repo] - [Gitmux][gitmux_repo]
- [Fzf][fzf_repo] 0.35+ for `fzf-tmux` - [Fzf][fzf_repo] 0.35+ for `fzf-tmux`
- exa for the tmux-sidebar: `sudo apt install exa`
### Recommended ### Recommended

View file

@ -183,7 +183,7 @@ set -g @extrakto_open_key 'ctrl-o'
# tmux-sidebar configs # tmux-sidebar configs
set -g @sidebar-tree-width '40' set -g @sidebar-tree-width '40'
set -g @sidebar-tree-command 'exa -abTL 2 --long --color always --icons --sort Name --group-directories-first --no-permissions --no-time --no-user' set -g @sidebar-tree-command 'exa -ab --long --git --color always --icons --sort Name --group-directories-first --no-permissions --no-time --no-user'
set -g @sidebar-tree 'C-e' set -g @sidebar-tree 'C-e'
set -g @sidebar-tree-focus 'C-z' set -g @sidebar-tree-focus 'C-z'