2025-06-02 10:29:11 +02:00
|
|
|
yay -S --noconfirm --needed \
|
2025-06-01 11:39:15 +02:00
|
|
|
nvim luarocks tree-sitter-cli \
|
2025-06-01 15:04:28 +02:00
|
|
|
mise github-cli \
|
|
|
|
lazygit lazydocker
|
2025-06-02 09:26:38 +02:00
|
|
|
|
|
|
|
# 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
|
2025-06-02 09:36:31 +02:00
|
|
|
|
|
|
|
# Set common git aliases
|
|
|
|
git config --global alias.co checkout
|
|
|
|
git config --global alias.br branch
|
|
|
|
git config --global alias.ci commit
|
|
|
|
git config --global alias.st status
|
|
|
|
git config --global pull.rebase true
|