2024-04-05 11:49:45 +03:00
|
|
|
|
# Enable mouse control (clickable windows, panes, resizable panes)
|
|
|
|
|
set -g mouse on
|
|
|
|
|
|
|
|
|
|
# List of plugins
|
|
|
|
|
set -g @plugin 'tmux-plugins/tpm'
|
|
|
|
|
set -g @plugin 'tmux-plugins/tmux-sensible'
|
|
|
|
|
set -g @plugin 'dracula/tmux'
|
|
|
|
|
|
|
|
|
|
# available plugins: battery, cpu-usage, git, gpu-usage, ram-usage, tmux-ram-usage, network, network-bandwidth, network-ping, ssh-session, attached-clients, network-vpn, weather, time, mpc, spotify-tui, kubernetes-context, synchronize-panes
|
2024-04-08 10:10:25 +03:00
|
|
|
|
set -g @dracula-plugins "cpu-usage ram-usage time"
|
2024-04-05 11:49:45 +03:00
|
|
|
|
|
|
|
|
|
# available colors: white, gray, dark_gray, light_purple, dark_purple, cyan, green, orange, red, pink, yellow
|
|
|
|
|
# set -g @dracula-[plugin-name]-colors "[background] [foreground]"
|
2024-04-08 10:10:25 +03:00
|
|
|
|
# set -g @dracula-cpu-usage-colors "dark_purple white"
|
2024-04-05 11:49:45 +03:00
|
|
|
|
set -g @dracula-cpu-usage-colors "green dark_gray"
|
|
|
|
|
|
2024-04-08 10:10:25 +03:00
|
|
|
|
set -g @dracula-show-timezone false
|
|
|
|
|
set -g @dracula-day-month true
|
|
|
|
|
set -g @dracula-military-time true
|
|
|
|
|
# set -g @dracula-time-format "%F %R"
|
|
|
|
|
set -g @dracula-time-format "%H:%M, %d %b %Y г."
|
2024-04-05 11:49:45 +03:00
|
|
|
|
|
|
|
|
|
set -g @dracula-show-powerline true
|
|
|
|
|
|
|
|
|
|
# for left
|
|
|
|
|
set -g @dracula-show-left-sep
|
|
|
|
|
|
|
|
|
|
# for right symbol (can set any symbol you like as separator)
|
|
|
|
|
set -g @dracula-show-right-sep
|
|
|
|
|
|
|
|
|
|
set -g @dracula-show-flags true
|
|
|
|
|
|
|
|
|
|
# it can accept `hostname` (full hostname), `session`, `shortname` (short name), `smiley`, `window`, or any character.
|
|
|
|
|
set -g @dracula-show-left-icon session
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
# Other examples:
|
|
|
|
|
# set -g @plugin 'github_username/plugin_name'
|
|
|
|
|
# set -g @plugin 'git@github.com:user/plugin'
|
|
|
|
|
# set -g @plugin 'git@bitbucket.com:user/plugin'
|
|
|
|
|
|
|
|
|
|
# Initialize TMUX plugin manager (keep this line at the very bottom of tmux.conf)
|
|
|
|
|
run '~/.tmux/plugins/tpm/tpm'
|