Skip to content

Commit ef03100

Browse files
committed
Add Nvim
1 parent 8a7da14 commit ef03100

File tree

1 file changed

+8
-0
lines changed

1 file changed

+8
-0
lines changed

wsl-init-script.sh

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -168,17 +168,25 @@ install_binaries_from_gh() {
168168
mkdir -p $HOME/.local/bin
169169

170170
# Tokei
171+
print "Installing tokei..."
171172
wget -qO tokei.tar.gz https://github.com/XAMPPRocky/tokei/releases/latest/download/tokei-x86_64-unknown-linux-gnu.tar.gz
172173
tar -xzf tokei.tar.gz -C $HOME/.local/bin
173174
rm tokei.tar.gz
174175

175176
# Task
177+
print "Installing task..."
176178
wget -qO task.tar.gz https://github.com/go-task/task/releases/download/v3.21.0/task_linux_amd64.tar.gz
177179
tar -xzf task.tar.gz
178180
mv task $HOME/.local/bin
179181
cp completion/fish/task.fish $HOME/.config/fish/completions
180182
rm -rf task.tar.gz LICENSE README.md completion
181183

184+
# Nvim
185+
print "Installing nvim..."
186+
wget -qO https://github.com/neovim/neovim/releases/download/stable/nvim-linux64.deb
187+
sudo dpkg -i nvim-linux64.deb
188+
git clone https://github.com/NvChad/NvChad ~/.config/nvim --depth 1
189+
182190
setup_gesttings() {
183191
print "Setting up gsettings..."
184192
sudo systemd-machine-id-setup

0 commit comments

Comments
 (0)