sunhat/install/neovim.sh

8 lines
287 B
Bash
Raw Normal View History

2024-05-26 18:09:34 -05:00
if ! command -v neovim &>/dev/null; then
sudo add-apt-repository -y ppa:neovim-ppa/stable
sudo apt update -y
sudo apt install -y neovim
git clone https://github.com/LazyVim/starter ~/.config/nvim
2024-06-03 14:30:34 -05:00
cp $OMAKUB_PATH/themes/neovim/tokyo-night.lua ~/.config/nvim/lua/plugins/theme.lua
2024-05-26 18:09:34 -05:00
fi