Update alacritty with better padding.
This commit is contained in:
parent
fdc6dd3d5b
commit
9f34762d13
|
|
@ -27,3 +27,4 @@ dotfiles/.config/coc/extensions/
|
|||
dotfiles/.config/coc/lists
|
||||
|
||||
dotfiles/.local/
|
||||
dotfiles/.config/alacritty/themes/
|
||||
|
|
|
|||
|
|
@ -1,13 +1,15 @@
|
|||
# Configuration for Alacritty, the GPU enhanced terminal emulator.
|
||||
|
||||
window:
|
||||
# Window padding (changes require restart)
|
||||
#
|
||||
# Blank space added around the window in pixels. This padding is scaled
|
||||
# by DPI and the specified value is always added at both opposing sides.
|
||||
padding:
|
||||
x: 10
|
||||
y: 10
|
||||
x: 0
|
||||
y: 0
|
||||
|
||||
dynamic_padding: true
|
||||
|
||||
decorations: full
|
||||
# Allow terminal applications to change Alacritty's window title.
|
||||
dynamic_title: true
|
||||
|
|
@ -72,7 +74,7 @@ draw_bold_text_with_bright_colors: true
|
|||
colors:
|
||||
# Default colors
|
||||
primary:
|
||||
background: '#333333'
|
||||
background: '#000000'
|
||||
foreground: '#F2F2F2'
|
||||
|
||||
# Normal colors
|
||||
|
|
@ -97,6 +99,8 @@ colors:
|
|||
cyan: '#33c5ba'
|
||||
white: '#fdf6e3'
|
||||
|
||||
import:
|
||||
- ~/.config/alacritty/themes/themes/challenger_deep.yaml
|
||||
|
||||
key_bindings:
|
||||
- { key: F11, action: ToggleFullscreen }
|
||||
|
|
|
|||
|
|
@ -0,0 +1 @@
|
|||
Subproject commit 417bf7336ea32a700a3c041574e27fb5d5f7d517
|
||||
|
|
@ -8,7 +8,7 @@ set -g @plugin 'tmux-plugins/tmux-sensible'
|
|||
# Tmux Power
|
||||
set -g @plugin 'linuxiscool/tmux-power'
|
||||
#set -g @tmux_power_theme 'moon' # dark slate blue
|
||||
set -g @tmux_power_theme '#70BFE1' # dark slate blue
|
||||
set -g @tmux_power_theme 'gold' # dark slate blue
|
||||
#set -g @tmux_power_date_icon '☃️ ☃️ ☃️ February' # set it to a blank will disable the icon
|
||||
set -g @tmux_power_date_icon '🌱 %B' # set it to a blank will disable the icon
|
||||
set -g @tmux_power_time_icon '⌚' # emoji can be used if your terminal supports
|
||||
|
|
|
|||
Loading…
Reference in New Issue