13 lines
433 B
Bash
Executable File
13 lines
433 B
Bash
Executable File
#!/bin/bash
|
|
|
|
if ! command -v nvim &>/dev/null || [ ! -d "$HOME/.config/nvim" ]; then
|
|
sudo pacman -S --noconfirm --needed nvim luarocks tree-sitter-cli
|
|
|
|
# Install LazyVim
|
|
rm -rf ~/.config/nvim
|
|
git clone https://github.com/LazyVim/starter ~/.config/nvim
|
|
cp -R ~/.local/share/omarchy/config/nvim/* ~/.config/nvim/
|
|
rm -rf ~/.config/nvim/.git
|
|
echo "vim.opt.relativenumber = false" >>~/.config/nvim/lua/config/options.lua
|
|
fi
|