updates
This commit is contained in:
@@ -53,10 +53,10 @@ automatically-unhide-macos-hidden-apps = false
|
||||
[gaps]
|
||||
inner.horizontal = 0
|
||||
inner.vertical = 0
|
||||
outer.left = 0
|
||||
outer.bottom = 0
|
||||
outer.top = 0
|
||||
outer.right = 0
|
||||
outer.left = 16
|
||||
outer.bottom = 16
|
||||
outer.top = 16
|
||||
outer.right = 16
|
||||
|
||||
# 'main' binding mode declaration
|
||||
# See: https://nikitabobko.github.io/AeroSpace/guide#binding-modes
|
||||
|
||||
@@ -1,2 +1,3 @@
|
||||
background_opacity 0.8
|
||||
background_blur 32
|
||||
background_blur 128
|
||||
hide_window_decorations yes
|
||||
|
||||
@@ -1,64 +1,41 @@
|
||||
format = """
|
||||
[░▒▓](#a3aed2)\
|
||||
[ ](bg:#a3aed2 fg:#090c0c)\
|
||||
[](bg:#769ff0 fg:#a3aed2)\
|
||||
$directory\
|
||||
[](fg:#769ff0 bg:#394260)\
|
||||
$git_branch\
|
||||
$git_status\
|
||||
[](fg:#394260 bg:#212736)\
|
||||
$nodejs\
|
||||
$rust\
|
||||
$golang\
|
||||
$php\
|
||||
[](fg:#212736 bg:#1d2230)\
|
||||
$time\
|
||||
[ ](fg:#1d2230)\
|
||||
\n$character"""
|
||||
add_newline = true
|
||||
|
||||
format = """
|
||||
$username@$hostname$fill$directory$git_branch$git_status
|
||||
$character
|
||||
"""
|
||||
|
||||
# === Username / Host ===
|
||||
[username]
|
||||
show_always = true
|
||||
format = "[$user]($style)"
|
||||
style_user = "bold dimmed purple"
|
||||
|
||||
[hostname]
|
||||
ssh_only = false
|
||||
format = "[$hostname]($style) "
|
||||
style = "dimmed #B794F4"
|
||||
|
||||
# === Directory ===
|
||||
[directory]
|
||||
style = "fg:#e3e5e5 bg:#769ff0"
|
||||
format = "[ $path ]($style)"
|
||||
truncation_length = 3
|
||||
truncation_symbol = "…/"
|
||||
format = "[$path]($style) "
|
||||
style = "bold #C4B5FD"
|
||||
|
||||
[directory.substitutions]
|
||||
"Documents" = " "
|
||||
"Downloads" = " "
|
||||
"Music" = " "
|
||||
"Pictures" = " "
|
||||
|
||||
# === Git ===
|
||||
[git_branch]
|
||||
symbol = ""
|
||||
style = "bg:#394260"
|
||||
format = '[[ $symbol $branch ](fg:#769ff0 bg:#394260)]($style)'
|
||||
symbol = " "
|
||||
format = "[$symbol$branch]($style) "
|
||||
style = "#9F7AEA"
|
||||
|
||||
[git_status]
|
||||
style = "bg:#394260"
|
||||
format = '[[($all_status$ahead_behind )](fg:#769ff0 bg:#394260)]($style)'
|
||||
style = "dimmed #A78BFA"
|
||||
format = "([$all_status$ahead_behind]($style)) "
|
||||
|
||||
[nodejs]
|
||||
symbol = ""
|
||||
style = "bg:#212736"
|
||||
format = '[[ $symbol ($version) ](fg:#769ff0 bg:#212736)]($style)'
|
||||
# === Prompt Symbol ===
|
||||
[character]
|
||||
success_symbol = "[❯](bold #C4B5FD)"
|
||||
error_symbol = "[❯](bold red)"
|
||||
vicmd_symbol = "[❮](bold #C4B5FD)"
|
||||
|
||||
[rust]
|
||||
symbol = ""
|
||||
style = "bg:#212736"
|
||||
format = '[[ $symbol ($version) ](fg:#769ff0 bg:#212736)]($style)'
|
||||
|
||||
[golang]
|
||||
symbol = ""
|
||||
style = "bg:#212736"
|
||||
format = '[[ $symbol ($version) ](fg:#769ff0 bg:#212736)]($style)'
|
||||
|
||||
[php]
|
||||
symbol = ""
|
||||
style = "bg:#212736"
|
||||
format = '[[ $symbol ($version) ](fg:#769ff0 bg:#212736)]($style)'
|
||||
|
||||
[time]
|
||||
disabled = false
|
||||
time_format = "%R" # Hour:Minute Format
|
||||
style = "bg:#1d2230"
|
||||
format = '[[ $time ](fg:#a0a9cb bg:#1d2230)]($style)'
|
||||
|
||||
17
wezterm/.wezterm.lua
Normal file
17
wezterm/.wezterm.lua
Normal file
@@ -0,0 +1,17 @@
|
||||
local wezterm = require 'wezterm'
|
||||
return {
|
||||
font = wezterm.font_with_fallback({"JetBrains Mono", "Iosevka Term"}),
|
||||
font_size = 12.0,
|
||||
window_background_opacity = 0.90,
|
||||
macos_window_background_blur = 20,
|
||||
color_scheme = "Builtin Dark",
|
||||
window_decorations = "RESIZE",
|
||||
enable_tab_bar = false,
|
||||
use_resize_increments = false,
|
||||
colors = {
|
||||
background = "#0C0F14",
|
||||
foreground = "#E0E1DD",
|
||||
cursor_bg = "#6EE2FF",
|
||||
cursor_fg = "#0C0F14",
|
||||
},
|
||||
}
|
||||
Reference in New Issue
Block a user