diff --git a/.config/fish/fish_plugins b/.config/fish/fish_plugins index 79742ba..95cbf4c 100644 --- a/.config/fish/fish_plugins +++ b/.config/fish/fish_plugins @@ -1,3 +1,2 @@ jorgebucaran/fisher -dracula/fish jorgebucaran/hydro diff --git a/.config/kitty/Catppuccin-Frappe.conf b/.config/kitty/Catppuccin-Frappe.conf new file mode 100644 index 0000000..80c3a35 --- /dev/null +++ b/.config/kitty/Catppuccin-Frappe.conf @@ -0,0 +1,80 @@ +# vim:ft=kitty + +## name: Catppuccin-Frappe +## author: Pocco81 (https://github.com/Pocco81) +## license: MIT +## upstream: https://github.com/catppuccin/kitty/blob/main/frappe.conf +## blurb: Soothing pastel theme for the high-spirited! + + + +# The basic colors +foreground #C6D0F5 +background #303446 +selection_foreground #303446 +selection_background #F2D5CF + +# Cursor colors +cursor #F2D5CF +cursor_text_color #303446 + +# URL underline color when hovering with mouse +url_color #F2D5CF + +# Kitty window border colors +active_border_color #BABBF1 +inactive_border_color #737994 +bell_border_color #E5C890 + +# OS Window titlebar colors +wayland_titlebar_color system +macos_titlebar_color system + +# Tab bar colors +active_tab_foreground #232634 +active_tab_background #CA9EE6 +inactive_tab_foreground #C6D0F5 +inactive_tab_background #292C3C +tab_bar_background #232634 + +# Colors for marks (marked text in the terminal) +mark1_foreground #303446 +mark1_background #BABBF1 +mark2_foreground #303446 +mark2_background #CA9EE6 +mark3_foreground #303446 +mark3_background #85C1DC + +# The 16 terminal colors + +# black +color0 #51576D +color8 #626880 + +# red +color1 #E78284 +color9 #E78284 + +# green +color2 #A6D189 +color10 #A6D189 + +# yellow +color3 #E5C890 +color11 #E5C890 + +# blue +color4 #8CAAEE +color12 #8CAAEE + +# magenta +color5 #F4B8E4 +color13 #F4B8E4 + +# cyan +color6 #81C8BE +color14 #81C8BE + +# white +color7 #B5BFE2 +color15 #A5ADCE diff --git a/.config/kitty/dracula.conf b/.config/kitty/dracula.conf deleted file mode 100644 index 8f05c52..0000000 --- a/.config/kitty/dracula.conf +++ /dev/null @@ -1,66 +0,0 @@ -# https://draculatheme.com/kitty -# -# Installation instructions: -# -# cp dracula.conf ~/.config/kitty/ -# echo "include dracula.conf" >> ~/.config/kitty/kitty.conf -# -# Then reload kitty for the config to take affect. -# Alternatively copy paste below directly into kitty.conf - -foreground #f8f8f2 -background #282a36 -selection_foreground #ffffff -selection_background #44475a - -url_color #8be9fd - -# black -color0 #21222c -color8 #6272a4 - -# red -color1 #ff5555 -color9 #ff6e6e - -# green -color2 #50fa7b -color10 #69ff94 - -# yellow -color3 #f1fa8c -color11 #ffffa5 - -# blue -color4 #bd93f9 -color12 #d6acff - -# magenta -color5 #ff79c6 -color13 #ff92df - -# cyan -color6 #8be9fd -color14 #a4ffff - -# white -color7 #f8f8f2 -color15 #ffffff - -# Cursor colors -cursor #f8f8f2 -cursor_text_color background - -# Tab bar colors -active_tab_foreground #282a36 -active_tab_background #f8f8f2 -inactive_tab_foreground #282a36 -inactive_tab_background #6272a4 - -# Marks -mark1_foreground #282a36 -mark1_background #ff5555 - -# Splits/Windows -active_border_color #f8f8f2 -inactive_border_color #6272a4 diff --git a/.config/kitty/kitty.conf b/.config/kitty/kitty.conf index bfde4ad..0fb55e2 100644 --- a/.config/kitty/kitty.conf +++ b/.config/kitty/kitty.conf @@ -8,4 +8,4 @@ disable_ligatures always confirm_os_window_close 0 -include frappe.conf +include Catppuccin-Frappe.conf diff --git a/.config/yadm/bootstrap.d/001_homebrew b/.config/yadm/bootstrap.d/001_homebrew index ef6a23a..e9392b3 100755 --- a/.config/yadm/bootstrap.d/001_homebrew +++ b/.config/yadm/bootstrap.d/001_homebrew @@ -3,16 +3,9 @@ system_type=$(uname -s) if [ "$system_type" = "Darwin" ]; then - # install homebrew if it's missing if ! command -v brew >/dev/null 2>&1; then echo "Installing homebrew" /bin/bash -c "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/HEAD/install.sh)" fi - - if [ -f "$HOME/.Brewfile" ]; then - echo "Updating homebrew bundle" - brew bundle --global - fi - fi diff --git a/.config/yadm/bootstrap.d/002_asdf b/.config/yadm/bootstrap.d/002_asdf deleted file mode 100755 index 8806c39..0000000 --- a/.config/yadm/bootstrap.d/002_asdf +++ /dev/null @@ -1,9 +0,0 @@ -#!/bin/bash - -. $(brew --prefix asdf)/libexec/asdf.sh - -asdf plugin add direnv -asdf plugin add elixir -asdf plugin add erlang - -asdf install diff --git a/.config/yadm/bootstrap.d/003_fisher b/.config/yadm/bootstrap.d/003_fisher index e87efb7..cd41390 100755 --- a/.config/yadm/bootstrap.d/003_fisher +++ b/.config/yadm/bootstrap.d/003_fisher @@ -4,5 +4,6 @@ if type -q fisher echo "fisher already installed" else echo "installing fisher" - curl -sL https://git.io/fisher | source && fisher install jorgebucaran/fisher + curl -sL https://raw.githubusercontent.com/jorgebucaran/fisher/main/functions/fisher.fish | source + fisher update end