test
This commit is contained in:
parent
9167a79622
commit
38a78052f8
3 changed files with 27 additions and 1 deletions
26
dracula.tmux
Normal file
26
dracula.tmux
Normal file
|
@ -0,0 +1,26 @@
|
|||
#!/usr/bin/env bash
|
||||
|
||||
# Dracula inspired color scheme for tmux
|
||||
# Author: Dane Williams
|
||||
|
||||
main()
|
||||
{
|
||||
# Dracula Color Palette
|
||||
background_color='#282a36'
|
||||
current_line_color='#44475a'
|
||||
foreground_color='#f8f8f2'
|
||||
comment_color='#6272a4'
|
||||
cyan='#8be9fd'
|
||||
green='#50fa7b'
|
||||
orange='#ffb86c'
|
||||
pink='#ff79c6'
|
||||
purple='#bd93f9'
|
||||
red='#ff5555'
|
||||
yellow='#f1fa8c'
|
||||
|
||||
tmux set-option -g default-terminal "screen-256color"
|
||||
|
||||
#border for panes
|
||||
tmux set-option -g pane-border-style fg='#6272a4'
|
||||
tmux set-option -g pane-active-border-style fg='#ff79c6'
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue