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