tmux icon indicating copy to clipboard operation
tmux copied to clipboard

Bug: status bar don't have a bottom padding or space between prompt

Open nivethan-me opened this issue 1 year ago • 2 comments

Describe the bug

i have a simple tmux configuration. after adding dracula/tmux and set the status bar position at the top i realized there is no bottom padding/space.

following is my tmux.config file

# set tmux prefix as ctrl + space
set -g prefix C-Space

# vim like bindings for navigation
setw -g mode-keys vi
bind-key h select-pane -L
bind-key j select-pane -D
bind-key k select-pane -U
bind-key l select-pane -R

# List of plugins
set -g @plugin 'tmux-plugins/tpm'
set -g @plugin 'alexghergh/nvim-tmux-navigation'
set -g @plugin 'dracula/tmux'

# dracula setup
set -g @dracula-show-powerline true
set -g @dracula-show-flags true
set -g @dracula-show-left-icon session
set -g status-position top
set -g @dracula-left-icon-padding 20 

set -g @dracula-plugins "time ram-usage"

# Initialize TMUX plugin manager (keep this line at the very bottom of tmux.conf)
run '~/.tmux/plugins/tpm/tpm'

To Reproduce

Steps to reproduce the behavior: 1.install dracula/tmux plugin 2. set the status bar position to top

Expected behavior

i want to add a space on the bottom of the status bar through configuration.

Screenshots

If applicable, add screenshots to help explain your problem. image

System

  • OS: Ubuntu 22.04
  • Tmux Version: 3.2a

nivethan-me avatar Apr 15 '23 04:04 nivethan-me