mirror of
https://github.com/arthur-pbty/arthur-os.git
synced 2026-08-01 20:28:16 +02:00
9 lines
289 B
Bash
Executable File
9 lines
289 B
Bash
Executable File
#!/bin/bash
|
|
|
|
if [[ ! -d "$HOME/.config/nvim" ]]; then
|
|
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
|