Void Linux workstation powered by niri, Fish and NeoVim. Contains scripts, browser extensions, custom XBPS packages, and typst plugins.
git.anhgelus.world/anhgelus/dotfiles
void
niri
fish
neovim
nvim
vim
dotfiles
linux
1#!/usr/bin/bash
2
3echo "installing nvim"
4
5curl -L -o nvim.appimage https://github.com/neovim/neovim/releases/download/v0.11.4/nvim-linux-x86_64.appimage
6
7chmod +x nvim.appimage
8echo 'alias nvim="~/nvim.appimage"' > setup_bash
9
10echo "setuping nvim"
11
12git clone https://git.anhgelus.world/anhgelus/dotfiles.git
13
14cp -r dotfiles/config/nvim .config
15
16rm -fr .config/nvim/lua/plugins/ultisnips.lua
17
18echo "execute 'source setup_bash' to finish the setup"
19