macos update
This commit is contained in:
parent
ed51e48bb4
commit
78ea031fd6
@ -1,13 +1,18 @@
|
|||||||
[env]
|
[env]
|
||||||
TERM = "xterm-256color"
|
# TERM = "xterm-256color"
|
||||||
|
|
||||||
[font]
|
[font]
|
||||||
size = 14
|
size = 14
|
||||||
normal = { family = "Maple Mono", style = "Regular" }
|
normal = { family = "SF Mono", style = "Regular" }
|
||||||
bold = { family = "Maple Mono", style = "Bold" }
|
bold = { family = "SF Mono", style = "Bold" }
|
||||||
italic = { family = "Maple Mono", style = "Italic" }
|
italic = { family = "SF Mono", style = "Regular Italic" }
|
||||||
bold_italic = { family = "Maple Mono", style = "Bold Italic" }
|
bold_italic = { family = "SF Mono", style = "Bold Italic" }
|
||||||
offset = { x = -1, y = 0 }
|
|
||||||
|
# normal = { family = "Maple Mono", style = "Regular" }
|
||||||
|
# bold = { family = "Maple Mono", style = "Bold" }
|
||||||
|
# italic = { family = "Maple Mono", style = "Italic" }
|
||||||
|
# bold_italic = { family = "Maple Mono", style = "Bold Italic" }
|
||||||
|
# offset = { x = -1, y = 0 }
|
||||||
|
|
||||||
[window]
|
[window]
|
||||||
padding = { x = 2, y = 0 }
|
padding = { x = 2, y = 0 }
|
||||||
@ -42,7 +47,7 @@ live_config_reload = true
|
|||||||
|
|
||||||
[colors.primary]
|
[colors.primary]
|
||||||
background = "#eeeeee"
|
background = "#eeeeee"
|
||||||
foreground = "#434343"
|
foreground = "#444444"
|
||||||
|
|
||||||
[colors.cursor]
|
[colors.cursor]
|
||||||
text = "#eeeeee"
|
text = "#eeeeee"
|
||||||
|
|||||||
@ -1,10 +1,17 @@
|
|||||||
term = xterm-256color
|
#term = xterm-256color
|
||||||
theme = Invero Day
|
theme = Invero Day
|
||||||
|
|
||||||
# Font
|
# Font
|
||||||
font-family = "Maple Mono NF"
|
font-family = "Maple Mono"
|
||||||
font-size = 13
|
font-size = 13
|
||||||
#font-thicken = true
|
font-thicken = true
|
||||||
|
font-thicken-strength = 120
|
||||||
|
font-feature = -liga, -dlig, -calt
|
||||||
|
|
||||||
|
adjust-underline-thickness = 1
|
||||||
|
adjust-strikethrough-thickness = 1
|
||||||
|
adjust-overline-thickness = 1
|
||||||
|
adjust-box-thickness = 1
|
||||||
adjust-cell-width = -7%
|
adjust-cell-width = -7%
|
||||||
adjust-cell-height = -2
|
adjust-cell-height = -2
|
||||||
|
|
||||||
@ -12,11 +19,15 @@ adjust-cell-height = -2
|
|||||||
cursor-style = block
|
cursor-style = block
|
||||||
cursor-style-blink = false
|
cursor-style-blink = false
|
||||||
mouse-hide-while-typing = true
|
mouse-hide-while-typing = true
|
||||||
shell-integration-features = no-cursor
|
shell-integration-features = ssh-terminfo,ssh-env,no-cursor
|
||||||
|
|
||||||
# Window
|
# Window
|
||||||
|
window-height = 80
|
||||||
|
window-width = 128
|
||||||
window-padding-x = 4
|
window-padding-x = 4
|
||||||
window-padding-y = 0
|
window-padding-y = 0
|
||||||
window-padding-color = extend
|
window-padding-color = extend
|
||||||
macos-titlebar-style = native
|
macos-titlebar-style = native
|
||||||
macos-icon = custom
|
macos-icon = custom
|
||||||
|
|
||||||
|
window-inherit-working-directory = false
|
||||||
Binary file not shown.
Binary file not shown.
@ -5,6 +5,7 @@ local act = wezterm.action
|
|||||||
-- General
|
-- General
|
||||||
config.term = "wezterm"
|
config.term = "wezterm"
|
||||||
config.color_scheme = "Invero Day"
|
config.color_scheme = "Invero Day"
|
||||||
|
config.use_ime = false
|
||||||
|
|
||||||
-- Font
|
-- Font
|
||||||
config.font = wezterm.font({ family = "Maple Mono NF", weight = "Medium" })
|
config.font = wezterm.font({ family = "Maple Mono NF", weight = "Medium" })
|
||||||
|
|||||||
@ -1,14 +1,17 @@
|
|||||||
#!/usr/bin/env bash
|
#!/usr/bin/env bash
|
||||||
set -euo pipefail
|
set -euo pipefail
|
||||||
|
|
||||||
# URL="https://raw.githubusercontent.com/triimdev/invero.nvim/refs/heads/main/extras/ghostty/invero_day"
|
# URL="https://raw.githubusercontent.com/triimd/invero.nvim/refs/heads/main/extras/ghostty/invero_day"
|
||||||
# THEME_DIR="$HOME/.config/ghostty/themes"
|
# THEME_DIR="$HOME/.config/ghostty/themes"
|
||||||
# THEME_NAME="Invero Day"
|
# THEME_NAME="Invero Day"
|
||||||
|
|
||||||
URL="https://raw.githubusercontent.com/triimdev/invero.nvim/refs/heads/main/extras/wezterm/invero_day.toml"
|
# URL="https://raw.githubusercontent.com/triimd/invero.nvim/refs/heads/main/extras/wezterm/invero_day.toml"
|
||||||
THEME_DIR="$HOME/.config/wezterm/colors"
|
# THEME_DIR="$HOME/.config/wezterm/colors"
|
||||||
THEME_NAME="Invero Day.toml"
|
# THEME_NAME="Invero Day.toml"
|
||||||
|
|
||||||
|
URL="https://raw.githubusercontent.com/triimd/invero.nvim/refs/heads/main/extras/kitty/invero_day.conf"
|
||||||
|
THEME_DIR="$HOME/.config/kitty"
|
||||||
|
THEME_NAME="invero.conf"
|
||||||
|
|
||||||
THEME_PATH="${THEME_DIR}/${THEME_NAME}"
|
THEME_PATH="${THEME_DIR}/${THEME_NAME}"
|
||||||
|
|
||||||
|
|||||||
@ -1 +1 @@
|
|||||||
Subproject commit b8cad0f750b5115ea6977fcd0c0d596c2b0b2558
|
Subproject commit 173ff5e47a9b780a25e021efb451a6a3c8669cea
|
||||||
Loading…
Reference in New Issue
Block a user