switch from starship to tide

master
Yorick van Pelt 2023-05-10 20:48:13 +02:00
parent 9f6bb6a011
commit bab00a2482
Signed by: yorick
GPG Key ID: A36E70F9DC014A15
3 changed files with 58 additions and 117 deletions

View File

@ -32,6 +32,11 @@ window.padding:
x: 0 x: 0
y: 0 y: 0
# Background opacity
window:
opacity: 0.9
# When true, bold text is drawn using the bright variant of colors. # When true, bold text is drawn using the bright variant of colors.
draw_bold_text_with_bright_colors: true draw_bold_text_with_bright_colors: true
@ -55,44 +60,11 @@ draw_bold_text_with_bright_colors: true
# * https://wiki.archlinux.org/index.php/font_configuration#Fontconfig_configuration # * https://wiki.archlinux.org/index.php/font_configuration#Fontconfig_configuration
# * file:///usr/share/doc/fontconfig/fontconfig-user.html # * file:///usr/share/doc/fontconfig/fontconfig-user.html
font: font:
# The normal (roman) font face to use.
normal: normal:
family: monospace # should be "Menlo" or something on macOS. family: "DejaVuSansMono Nerd Font" # should be "Menlo" or something on macOS.
# Style can be specified to pick a specific face.
# style: Regular
# The bold font face
bold:
family: monospace # should be "Menlo" or something on macOS.
# Style can be specified to pick a specific face.
# style: Bold
# The italic font face
italic:
family: monospace # should be "Menlo" or something on macOS.
# Style can be specified to pick a specific face.
# style: Italic
# Point size of the font
size: 12.0 size: 12.0
# Offset is the extra space around each character. offset.y can be thought of
# as modifying the linespacing, and offset.x as modifying the letter spacing.
offset:
x: 0
y: 0
# Glyph offset determines the locations of the glyphs within their cells with
# the default being at the bottom. Increase the x offset to move the glyph to
# the right, increase the y offset to move the glyph upward.
glyph_offset:
x: 0
y: 0
# Should display the render timer
debug:
render_timer: false
# Use custom cursor colors. If true, display the cursor in the cursor.foreground # Use custom cursor colors. If true, display the cursor in the cursor.foreground
# and cursor.background colors, otherwise invert the colors of the cursor. # and cursor.background colors, otherwise invert the colors of the cursor.
@ -100,103 +72,76 @@ debug:
colors: colors:
# Default colors # Default colors
primary: primary:
background: '0xfdf6e3' background: '0xeeeeee'
foreground: '0x586e75' foreground: '0x4d4d4c'
# Colors the cursor will use if `custom_cursor_colors` is true
cursor:
text: '0xf3f3f3'
cursor: '0x4d4d4c'
# Normal colors # Normal colors
normal: normal:
black: '0x073642' black: '0xededed'
red: '0xdc322f' red: '0xd7005f'
green: '0x859900' green: '0x718c00'
yellow: '0xb58900' yellow: '0xd75f00'
blue: '0x268bd2' blue: '0x4271ae'
magenta: '0xd33682' magenta: '0x8959a8'
cyan: '0x2aa198' cyan: '0x3e999f'
white: '0xeee8d5' white: '0x4d4d4c'
# Bright colors # Bright colors
bright: bright:
black: '0x002b36' black: '0x949494'
red: '0xcb4b16' red: '0xd7005f'
green: '0x586e75' green: '0x718c00'
yellow: '0x657b83' yellow: '0xd75f00'
blue: '0x839496' blue: '0x4271ae'
magenta: '0x6c71c4' magenta: '0x8959a8'
cyan: '0x93a1a1' cyan: '0x3e999f'
white: '0xfdf6e3' white: '0xf5f5f5'
# Colors (Solarized Dark) # Colors (Solarized Dark)
colors-alt: colors-alt:
# Default colors # Default colors
primary: primary:
background: '0x002b36' background: '0x1c1c1c'
foreground: '0x839496' foreground: '0x808080'
# Normal colors
normal:
black: '0x073642'
red: '0xdc322f'
green: '0x859900'
yellow: '0xb58900'
blue: '0x268bd2'
magenta: '0xd33682'
cyan: '0x2aa198'
white: '0xeee8d5'
# Bright colors
bright:
black: '0x002b36'
red: '0xcb4b16'
green: '0x586e75'
yellow: '0x657b83'
blue: '0x839496'
magenta: '0x6c71c4'
cyan: '0x93a1a1'
white: '0xfdf6e3'
# Colors (Tomorrow Night Bright)
colors_default:
# Default colors
primary:
background: '0x000000'
foreground: '0xeaeaea'
# Colors the cursor will use if `custom_cursor_colors` is true # Colors the cursor will use if `custom_cursor_colors` is true
cursor: cursor:
text: '0x000000' text: '0x1c1c1c'
cursor: '0xffffff' cursor: '0x808080'
# Normal colors # Normal colors
normal: normal:
black: '0x000000' black: '0xededed'
red: '0xd54e53' red: '0xd7005f'
green: '0xb9ca4a' green: '0x718c00'
yellow: '0xe6c547' yellow: '0xd75f00'
blue: '0x7aa6da' blue: '0x4271ae'
magenta: '0xc397d8' magenta: '0x8959a8'
cyan: '0x70c0ba' cyan: '0x3e999f'
white: '0xffffff' white: '0x4d4d4c'
# Bright colors # Bright colors
bright: bright:
black: '0x666666' black: '0x949494'
red: '0xff3334' red: '0xd7005f'
green: '0x9ec400' green: '0x718c00'
yellow: '0xe7c547' yellow: '0xd75f00'
blue: '0x7aa6da' blue: '0x4271ae'
magenta: '0xb77ee0' magenta: '0x8959a8'
cyan: '0x54ced6' cyan: '0x3e999f'
white: '0xffffff' white: '0xf5f5f5'
# Dim colors (Optional)
dim:
black: '0x333333'
red: '0xf2777a'
green: '0x99cc99'
yellow: '0xffcc66'
blue: '0x6699cc'
magenta: '0xcc99cc'
cyan: '0x66cccc'
white: '0xdddddd'
indexed_colors:
- { index: 16, color: '0x5faf5f' }
- { index: 17, color: '0x5f8787' }
- { index: 18, color: '0xaf005f' }
- { index: 19, color: '0x5faf00' }
- { index: 20, color: '0x5fafd7' }
- { index: 21, color: '0xd7875f' }
# Visual Bell # Visual Bell
# #
# Any time the BEL code is received, Alacritty "rings" the visual bell. Once # Any time the BEL code is received, Alacritty "rings" the visual bell. Once
@ -223,8 +168,6 @@ bell:
animation: EaseOutSine animation: EaseOutSine
duration: 0 duration: 0
# Background opacity
background_opacity: 0.9
# Mouse bindings # Mouse bindings
# #

View File

@ -10,10 +10,7 @@ in {
imports = [ ./desktop.nix ./emacs.nix ./lumi.nix ]; imports = [ ./desktop.nix ./emacs.nix ./lumi.nix ];
programs = { programs = {
nix-index.enable = true; nix-index.enable = true;
starship = { # todo: fish tide
enable = true;
settings.nix_shell.disabled = false;
};
# todo: .aws/config default region # todo: .aws/config default region
gh = { gh = {
enable = true; enable = true;

View File

@ -87,6 +87,7 @@
source-code-pro source-code-pro
ubuntu_font_family # Ubuntu fonts ubuntu_font_family # Ubuntu fonts
source-han-sans source-han-sans
nerdfonts
iosevka iosevka
emojione emojione
font-awesome font-awesome