blob: 1efd4a3dd630a6f92a1de92bdf2e506185d06d64 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
#!/usr/bin/bash
echo "installing nvim"
curl -L -o nvim.appimage https://github.com/neovim/neovim/releases/download/v0.11.4/nvim-linux-x86_64.appimage
chmod +x nvim.appimage
echo 'alias nvim="~/nvim.appimage"' > setup_bash
echo "setuping nvim"
git clone https://git.anhgelus.world/anhgelus/dotfiles.git
cp -r dotfiles/config/nvim .config
rm -fr .config/nvim/lua/plugins/ultisnips.lua
echo "execute 'source setup_bash' to finish the setup"
|