From f1888d9c0f08f88e3fc2d4d94911fc0517572bf5 Mon Sep 17 00:00:00 2001 From: caiowakamatsu Date: Sat, 18 Oct 2025 06:26:48 -0300 Subject: [PATCH] updates --- aerospace/aerospace.toml | 8 ++-- kitty/kitty.conf | 3 +- starship/starship.toml | 85 +++++++++++++++------------------------- wezterm/.wezterm.lua | 17 ++++++++ 4 files changed, 54 insertions(+), 59 deletions(-) create mode 100644 wezterm/.wezterm.lua diff --git a/aerospace/aerospace.toml b/aerospace/aerospace.toml index caaa18d..f0686cd 100644 --- a/aerospace/aerospace.toml +++ b/aerospace/aerospace.toml @@ -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 diff --git a/kitty/kitty.conf b/kitty/kitty.conf index 2b5277c..ae601ee 100644 --- a/kitty/kitty.conf +++ b/kitty/kitty.conf @@ -1,2 +1,3 @@ background_opacity 0.8 -background_blur 32 +background_blur 128 +hide_window_decorations yes diff --git a/starship/starship.toml b/starship/starship.toml index 4972a7b..5807cc6 100644 --- a/starship/starship.toml +++ b/starship/starship.toml @@ -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)' diff --git a/wezterm/.wezterm.lua b/wezterm/.wezterm.lua new file mode 100644 index 0000000..4bfd853 --- /dev/null +++ b/wezterm/.wezterm.lua @@ -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", + }, +}