From: Ruben Beltran del Rio Date: Mon, 6 Jan 2025 08:30:06 +0000 (+0100) Subject: Add configs for Ghostty X-Git-Url: https://git.r.bdr.sh/rbdr/dotfiles/commitdiff_plain/b35d79feb8e2fe34f9b5991a91c39c3249790155?hp=af139700ee0f77a2705d4bf98f281ffa25db4113 Add configs for Ghostty --- diff --git a/config/ghostty/config b/config/ghostty/config new file mode 100644 index 0000000..cd53c5f --- /dev/null +++ b/config/ghostty/config @@ -0,0 +1,25 @@ +# Font +font-family = "InputMonoCondensed Thin" +font-family-bold = "InputMonoCondensed Medium" +font-family-italic = "InputMonoCondensed ThinIta" +font-family-bold-italic = "InputMonoCondensed MediumIta" +font-size = 14 + +# Cursor +cursor-invert-fg-bg = true +cursor-style = block + +# Mouse +mouse-hide-while-typing = false + +# Theme +background-opacity = 0.95 +theme = ruben-tranquil + +# Window +macos-titlebar-style = hidden +window-padding-x = 5 +window-padding-y = 10,5 + +# MacOS Custom +macos-option-as-alt = left diff --git a/config/ghostty/themes/ruben-tranquil b/config/ghostty/themes/ruben-tranquil new file mode 100644 index 0000000..8ec4cf2 --- /dev/null +++ b/config/ghostty/themes/ruben-tranquil @@ -0,0 +1,52 @@ +# Color Scheme - Ruben Tranquil +foreground = #ffffff +# Deep Slate Green +background = #0F261F +# Deep Slate Green +selection-foreground = #0F261F +# Light Neutral Gray +selection-background = #DAE6E3 + +# Dark Neutral Gray +palette = 0=#90A6A2 +# red +# Jasper Red +palette = 1=#FA2B00 +# green +# Light Porcelain Green +palette = 2=#23C17C +# yellow +# Naples Yellow +palette = 3=#FAED8F +# blue +# Olympic Blue +palette = 4=#4F8FE6 +# magenta +# Hermosa Pink +palette = 5=#FFB4F0 +# cyan +# Calamine Blue +palette = 6=#80FFCC +# white +# Light Neutral Gray +palette = 7=#DAE6E3 + +# black +# Neutral Gray +palette = 8=#B5D1CC +# red +# Grenadine Pink +palette = 9=#FF616B +# green +palette = 10=#55ff55 +# yellow +palette = 11=#ffff55 +# blue +palette = 12=#5555ff +# magenta +# Seashell Pink +palette = 13=#FFCFC4 +# cyan +palette = 14=#55ffff +# white +palette = 15=#ffffff diff --git a/config/kitty/kitty.conf b/config/kitty/kitty.conf index 4f736fc..b08ade7 100644 --- a/config/kitty/kitty.conf +++ b/config/kitty/kitty.conf @@ -23,7 +23,7 @@ background #0F261F # Deep Slate Green selection_foreground #0F261F # Light Neutral Gray -selection_background #DAE6E3 +selection_background #DAE6E4 # Calamine Blue active_border_color #80FFCC # Light Neutral Gray diff --git a/config/nvim/colors/tranquil.vim b/config/nvim/colors/tranquil.vim index f331a5a..30d13ba 100644 --- a/config/nvim/colors/tranquil.vim +++ b/config/nvim/colors/tranquil.vim @@ -16,7 +16,7 @@ endif let g:colors_name = "tranquil" -hi Normal guifg=#FFFFFF guibg=#0F261F +hi Normal guifg=#FFFFFF guibg=NONE ctermbg=NONE hi Comment guifg=#B5D1CC hi Cursor guifg=#90A6A2 guibg=#FAED8F hi LineNr guifg=#0024CC guibg=#FFFFFF diff --git a/install b/install index 9940001..c8163bb 100755 --- a/install +++ b/install @@ -53,6 +53,9 @@ mkdir -p ~/.config # kitty ln -fns ../.dotfiles/config/kitty ~/.config/kitty +# ghostty +ln -fns ../.dotfiles/config/ghostty ~/.config/ghostty + # nvim ln -fns ../.dotfiles/config/nvim ~/.config/nvim