mirror of
https://github.com/basecamp/omarchy.git
synced 2025-07-27 12:19:24 +00:00
Simplify so we can just run everything in the install dir
This commit is contained in:
@ -5,4 +5,10 @@ set -e
|
|||||||
trap 'echo "Omarchy installation failed! You can retry by running: source ~/.local/share/omarchy/install.sh"' ERR
|
trap 'echo "Omarchy installation failed! You can retry by running: source ~/.local/share/omarchy/install.sh"' ERR
|
||||||
|
|
||||||
# Install everything
|
# Install everything
|
||||||
source ~/.local/share/omarchy/install/all.sh
|
for f in ~/.local/share/omarchy/install/*.sh; do source "$f"; done
|
||||||
|
|
||||||
|
# Copy over Omarchy configs
|
||||||
|
cp -R ~/.local/share/omarchy/config/* ~/.config/
|
||||||
|
|
||||||
|
# Use default bashrc from Omarchy
|
||||||
|
echo "source ~/.local/share/omarchy/default/bash/rc" >~/.bashrc
|
||||||
|
@ -1,9 +0,0 @@
|
|||||||
# Install things in the right order
|
|
||||||
source ~/.local/share/omarchy/install/yay.sh
|
|
||||||
source ~/.local/share/omarchy/install/hyprlandia.sh
|
|
||||||
source ~/.local/share/omarchy/install/desktop.sh
|
|
||||||
source ~/.local/share/omarchy/install/terminal.sh
|
|
||||||
source ~/.local/share/omarchy/install/development.sh
|
|
||||||
source ~/.local/share/omarchy/install/docker.sh
|
|
||||||
source ~/.local/share/omarchy/install/ssdm.sh
|
|
||||||
source ~/.local/share/omarchy/install/configurations.sh
|
|
@ -1,12 +0,0 @@
|
|||||||
# Install LazyVim
|
|
||||||
git clone https://github.com/LazyVim/starter ~/.config/nvim
|
|
||||||
rm -rf ~/.config/nvim/.git
|
|
||||||
|
|
||||||
# Copy over Omarchy configs
|
|
||||||
cp -R ~/.local/share/omarchy/config/* ~/.config/
|
|
||||||
|
|
||||||
# Use default bashrc from Omarchy
|
|
||||||
echo "source ~/.local/share/omarchy/default/bash/rc" >~/.bashrc
|
|
||||||
|
|
||||||
# Turn off relative line numbers in nvim
|
|
||||||
echo "vim.opt.relativenumber = false" >>~/.config/nvim/lua/config/options.lua
|
|
@ -2,3 +2,10 @@ yay -S --noconfirm \
|
|||||||
nvim luarocks tree-sitter-cli \
|
nvim luarocks tree-sitter-cli \
|
||||||
mise github-cli \
|
mise github-cli \
|
||||||
lazygit lazydocker
|
lazygit lazydocker
|
||||||
|
|
||||||
|
# Install LazyVim
|
||||||
|
git clone https://github.com/LazyVim/starter ~/.config/nvim
|
||||||
|
rm -rf ~/.config/nvim/.git
|
||||||
|
|
||||||
|
# Turn off relative line numbers in nvim
|
||||||
|
echo "vim.opt.relativenumber = false" >>~/.config/nvim/lua/config/options.lua
|
||||||
|
Reference in New Issue
Block a user