Compare commits

..

No commits in common. "f3c2946dc5ebcaa497155641b339d095ab0d1830" and "138ec836b8f2525a0f7dd2b8bdb9fadd8005ce80" have entirely different histories.

6 changed files with 18 additions and 44 deletions

View File

@ -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 Mono
family: FiraCode Nerd Font
# 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 Mono
family: FiraCode Nerd Font
# 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 Mono
family: FiraCode Nerd Font
# 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 Mono
family: FiraCode Nerd Font
# The `style` can be specified to pick a specific face.
style: Bold Italic
@ -192,32 +192,6 @@ 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
@ -361,8 +335,6 @@ colors:
# the default background. When set to `true` all cells will be transparent
# regardless of their background color.
#transparent_background_colors: false
#
# Bell
#

View File

@ -14,7 +14,6 @@
"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}"
},
}
@ -97,6 +96,11 @@
// "icon-size": 21,
"spacing": 10
},
"clock": {
//"timezone": "America/New_York",
"tooltip-format": "<big>{:%Y %B}</big>\n<tt><small>{calendar}</small></tt>",
"format-alt": "{:%Y-%m-%d}"
},
"cpu": {
"format": "{usage}%  {icon}",
"format-icons": ["x", "y", "z"],

View File

@ -150,11 +150,9 @@ label:focus {
#pulseaudio {
color: #fabd2f;
border-bottom: solid 3px #fabd2f;
}
#pulseaudio.muted {
color: #d79921;
border-bottom: solid 3px #d79921;
}
#custom-media {

View File

@ -174,11 +174,9 @@ label:focus {
#pulseaudio {
color: $light-yellow;
border-bottom: solid 3px $light-yellow;
&.muted {
color: $dark-yellow;
border-bottom: solid 3px $dark-yellow;
}
}

View File

@ -38,8 +38,7 @@
;; Set font
(setq doom-font (font-spec :family "FiraCode Nerd Font Mono" :size 12 :weight 'semi-light)
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))
doom-variable-pitch-font (font-spec :family "Fira Sans" :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'.
@ -47,7 +46,7 @@
;; If you use `org' and don't want your org files in the default location below,
;; change `org-directory'. It must be set before org loads!
(setq org-directory (file-truename "~/org-roam"))
(setq org-directory "~/org/")
;; Whenever you reconfigure a package, make sure to wrap your config in an
;; `after!' block, otherwise Doom's defaults may override your settings. E.g.

View File

@ -59,3 +59,6 @@
(package! terraform-mode)
; add typescript major mode
(package! typescript-mode)
; chezmoi management functions
(package! chezmoi)