diff --git a/bin/omakub-sub/install.sh b/bin/omakub-sub/install.sh index f7413f3..3e35081 100644 --- a/bin/omakub-sub/install.sh +++ b/bin/omakub-sub/install.sh @@ -2,21 +2,23 @@ CHOICES=( "Dev Language Install programming language environment" "Dev Database Install development database in Docker" "1password Manage your passwords securely across devices" + "Audacity Record and edit audio" "Brave Chrome-based browser with built-in ad blocking" + "Doom Emacs Emacs framework with curated list of packages" "Dropbox Sync files across computers with ease" "OBS Studio Record screencasts with inputs from both display + webcam" - "Audacity Record and edit audio" "Ollama Run LLMs, like Meta's Llama3, locally" "RubyMine IntelliJ's commercial Ruby editor" "Spotify Stream music from the world's most popular service" "Steam Play games from Valve's store" - "Zoom Attend and host video chat meetings" "VirtualBox Virtual machines to run Windows/Linux" + "Zed Fast all-purpose editor" + "Zoom Attend and host video chat meetings" "> All Re-run any of the default installers" "<< Back " ) -CHOICE=$(gum choose "${CHOICES[@]}" --height 17 --header "Install application") +CHOICE=$(gum choose "${CHOICES[@]}" --height 19 --header "Install application") if [[ "$CHOICE" == "<< Back"* ]] || [[ -z "$CHOICE" ]]; then # Don't install anything diff --git a/install/desktop/optional/app-doom-emacs.sh b/install/desktop/optional/app-doom-emacs.sh new file mode 100644 index 0000000..7d5ada8 --- /dev/null +++ b/install/desktop/optional/app-doom-emacs.sh @@ -0,0 +1,3 @@ +sudo apt install -y emacs +git clone --depth 1 https://github.com/doomemacs/doomemacs ~/.config/emacs +~/.config/emacs/bin/doom install diff --git a/install/desktop/optional/app-zed.sh b/install/desktop/optional/app-zed.sh new file mode 100644 index 0000000..63380c7 --- /dev/null +++ b/install/desktop/optional/app-zed.sh @@ -0,0 +1 @@ +curl https://zed.dev/install.sh | sh diff --git a/themes/nord/neovim.lua b/themes/nord/neovim.lua index fc2254e..27a68b1 100644 --- a/themes/nord/neovim.lua +++ b/themes/nord/neovim.lua @@ -1,9 +1,9 @@ return { - { "shaunsingh/nord.nvim" }, + { "EdenEast/nightfox.nvim" }, { "LazyVim/LazyVim", opts = { - colorscheme = "nord", + colorscheme = "nordfox", }, }, } diff --git a/uninstall/app-doom-emacs.sh b/uninstall/app-doom-emacs.sh new file mode 100644 index 0000000..0b98d5b --- /dev/null +++ b/uninstall/app-doom-emacs.sh @@ -0,0 +1,4 @@ +sudo apt remove --purge -y emacs emacs-gtk +sudo rm -rf ~/.config/emacs +sudo rm -rf ~/.emacs.d +sudo rm -rf ~/.config/doom diff --git a/uninstall/app-zed.sh b/uninstall/app-zed.sh new file mode 100644 index 0000000..a8f566f --- /dev/null +++ b/uninstall/app-zed.sh @@ -0,0 +1,4 @@ +rm -rf ~/.local/zed.app +rm -rf ~/.local/bin/zed +rm .rf ~/.local/share/applications/dev.zed.Zed.desktop +rm -rf ~/.config/zed diff --git a/version b/version index 9084fa2..524cb55 100644 --- a/version +++ b/version @@ -1 +1 @@ -1.1.0 +1.1.1