Compare commits

...

4 Commits

Author SHA1 Message Date
46e2f06928
Add visible whitespace to helix 2023-01-12 08:41:31 -05:00
1d19572917
Use BerkeleyMono font 2023-01-12 08:40:58 -05:00
db381e88ba
Now that italics are working again, revisit theme
Add back italics.  They don't work in TMUX still, but at least I can now
use them in the theme to better hilight function parameters.
2023-01-01 13:45:23 -05:00
f6884568cc
Fix font configuration to enable italics
Only one of the entries needs to be specified for most fonts as
alacritty will automatically figure out all the right font data to
use.
2023-01-01 13:43:54 -05:00
3 changed files with 8 additions and 16 deletions

View File

@ -32,17 +32,10 @@ scrolling:
history: 10000 history: 10000
multiplier: 3 multiplier: 3
# Font configuration (changes require restart) # Font configuration
font: font:
#normal: normal:
#family: monospace family: BerkeleyMono
#style: Regular
#bold:
#family: monospace
#style: Bold
italic:
family: monospace
style: Italic
size: 11.0 size: 11.0
offset: offset:
x: 0 x: 0

View File

@ -9,3 +9,5 @@ theme = "glfmn"
color-modes = true # Differentiate between modes in lower left-hand corner color-modes = true # Differentiate between modes in lower left-hand corner
bufferline = "multiple" # Show buffers as tabs bufferline = "multiple" # Show buffers as tabs
[editor.whitespace]
render = "all"

View File

@ -7,17 +7,14 @@ inherits = "gruvbox"
# Make operators less loud but stil stand out # Make operators less loud but stil stand out
"operator" = "fg3" "operator" = "fg3"
# Remove italics (can cause issues with tmux)
"comment" = "gray1"
# Unify look of variables with slight contrast difference to emphasize # Unify look of variables with slight contrast difference to emphasize
# function parameters. # function parameters.
"variable" = "fg2" "variable" = "fg2"
"variable.parameter" = "fg1" "variable.parameter" = { fg = "fg1", modifiers = ["italic"] }
"variable.builtin" = "fg1" "variable.builtin" = { fg = "fg1", modifiers = ["italic"] }
# Unify look of functions # Unify look of functions
"function" = "green1" "function" = "green1"
"function.macro" = "aqua1" "function.macro" = "aqua1"
"function.builtin" = { fg = "green1", modifiers = ["bold"] } "function.builtin" = { fg = "green1", modifiers = ["bold"] }