Working on config.
This commit is contained in:
parent
138ec836b8
commit
b806aadaae
@ -61,13 +61,13 @@ window:
|
||||
# Values for `decorations` (macOS only):
|
||||
# - transparent: Title bar, transparent background and title bar buttons
|
||||
# - buttonless: Title bar, transparent background and no title bar buttons
|
||||
decorations: none
|
||||
decorations: "None"
|
||||
|
||||
# Background opacity
|
||||
#
|
||||
# Window opacity as a floating point number from `0.0` to `1.0`.
|
||||
# The value `0.0` is completely transparent and `1.0` is opaque.
|
||||
#opacity: 1.0
|
||||
opacity: 1.0
|
||||
|
||||
# Startup Mode (changes require restart)
|
||||
#
|
||||
@ -81,10 +81,10 @@ window:
|
||||
#startup_mode: Windowed
|
||||
|
||||
# Window title
|
||||
#title: Alacritty
|
||||
title: Alacritty
|
||||
|
||||
# Allow terminal applications to change Alacritty's window title.
|
||||
#dynamic_title: true
|
||||
dynamic_title: true
|
||||
|
||||
# Window class (Linux/BSD only):
|
||||
#class:
|
||||
@ -118,7 +118,7 @@ font:
|
||||
# - (Linux/BSD) monospace
|
||||
# - (Windows) Consolas
|
||||
#family: monospace
|
||||
family: FiraCode Nerd Font
|
||||
family: FiraCode Nerd Font Mono
|
||||
|
||||
# The `style` can be specified to pick a specific face.
|
||||
style: Regular
|
||||
@ -130,7 +130,7 @@ font:
|
||||
# If the bold family is not specified, it will fall back to the
|
||||
# value specified for the normal font.
|
||||
#family: monospace
|
||||
family: FiraCode Nerd Font
|
||||
family: FiraCode Nerd Font Mono
|
||||
|
||||
# The `style` can be specified to pick a specific face.
|
||||
style: Bold
|
||||
@ -142,7 +142,7 @@ font:
|
||||
# If the italic family is not specified, it will fall back to the
|
||||
# value specified for the normal font.
|
||||
#family: monospace
|
||||
family: FiraCode Nerd Font
|
||||
family: FiraCode Nerd Font Mono
|
||||
|
||||
# The `style` can be specified to pick a specific face.
|
||||
style: Italic
|
||||
@ -154,7 +154,7 @@ font:
|
||||
# If the bold italic family is not specified, it will fall back to the
|
||||
# value specified for the normal font.
|
||||
#family: monospace
|
||||
family: FiraCode Nerd Font
|
||||
family: FiraCode Nerd Font Mono
|
||||
|
||||
# The `style` can be specified to pick a specific face.
|
||||
style: Bold Italic
|
||||
@ -192,6 +192,32 @@ font:
|
||||
# If `true`, bold text is drawn using the bright color variants.
|
||||
#draw_bold_text_with_bright_colors: false
|
||||
|
||||
# Colors (Gruvbox Material Dark Medium)
|
||||
colors:
|
||||
primary:
|
||||
background: '0x282828'
|
||||
foreground: '0xdfbf8e'
|
||||
|
||||
normal:
|
||||
black: '0x665c54'
|
||||
red: '0xea6962'
|
||||
green: '0xa9b665'
|
||||
yellow: '0xe78a4e'
|
||||
blue: '0x7daea3'
|
||||
magenta: '0xd3869b'
|
||||
cyan: '0x89b482'
|
||||
white: '0xdfbf8e'
|
||||
|
||||
bright:
|
||||
black: '0x928374'
|
||||
red: '0xea6962'
|
||||
green: '0xa9b665'
|
||||
yellow: '0xe3a84e'
|
||||
blue: '0x7daea3'
|
||||
magenta: '0xd3869b'
|
||||
cyan: '0x89b482'
|
||||
white: '0xdfbf8e'
|
||||
|
||||
# Colors (Tomorrow Night)
|
||||
#colors:
|
||||
# Default colors
|
||||
@ -335,6 +361,8 @@ font:
|
||||
# the default background. When set to `true` all cells will be transparent
|
||||
# regardless of their background color.
|
||||
#transparent_background_colors: false
|
||||
#
|
||||
|
||||
|
||||
# Bell
|
||||
#
|
||||
|
||||
@ -99,6 +99,7 @@
|
||||
"clock": {
|
||||
//"timezone": "America/New_York",
|
||||
"tooltip-format": "<big>{:%Y %B}</big>\n<tt><small>{calendar}</small></tt>",
|
||||
"format": "{:%H:%M %d/%m/%Y}",
|
||||
"format-alt": "{:%Y-%m-%d}"
|
||||
},
|
||||
"cpu": {
|
||||
|
||||
@ -150,9 +150,11 @@ label:focus {
|
||||
|
||||
#pulseaudio {
|
||||
color: #fabd2f;
|
||||
border-bottom: solid 3px #fabd2f;
|
||||
}
|
||||
#pulseaudio.muted {
|
||||
color: #d79921;
|
||||
border-bottom: solid 3px #d79921;
|
||||
}
|
||||
|
||||
#custom-media {
|
||||
|
||||
@ -174,9 +174,11 @@ label:focus {
|
||||
|
||||
#pulseaudio {
|
||||
color: $light-yellow;
|
||||
border-bottom: solid 3px $light-yellow;
|
||||
|
||||
&.muted {
|
||||
color: $dark-yellow;
|
||||
border-bottom: solid 3px $dark-yellow;
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
@ -38,7 +38,8 @@
|
||||
|
||||
;; Set font
|
||||
(setq doom-font (font-spec :family "FiraCode Nerd Font Mono" :size 12 :weight 'semi-light)
|
||||
doom-variable-pitch-font (font-spec :family "Fira Sans" :size 13))
|
||||
doom-unicode-font (font-spec :family "FiraCode Nerd Font Mono" :size 12 :weight 'semi-light)
|
||||
doom-variable-pitch-font (font-spec :family "FiraCode Nerd Font Mono" :size 13))
|
||||
|
||||
;; This determines the style of line numbers in effect. If set to `nil', line
|
||||
;; numbers are disabled. For relative line numbers, set this to `relative'.
|
||||
|
||||
Loading…
Reference in New Issue
Block a user