Files
omakub/install/app-neovim.sh
David Heinemeier Hansson 7230d4ecaf Merge pull request #71 from 2KAbhishek/feat/transparent-neovim-bg
Transparent Neovim background for all themes
2024-06-10 16:25:13 +02:00

13 lines
470 B
Bash

sudo add-apt-repository -y ppa:neovim-ppa/stable
sudo apt update
sudo apt install -y neovim
if [ ! -d "$HOME/.config/nvim" ]; then
git clone https://github.com/LazyVim/starter ~/.config/nvim
cp ~/.local/share/omakub/themes/neovim/commons.lua ~/.config/nvim/lua/plugins/
cp ~/.local/share/omakub/themes/neovim/tokyo-night.lua ~/.config/nvim/lua/plugins/theme.lua
# Enable default extras
cp ~/.local/share/omakub/configs/lazyvim.json ~/.config/nvim/lazyvim.json
fi