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
fork

Configure Feed

Select the types of activity you want to include in your feed.

ci(nvim): script to install

+24
+5
README.md
··· 2 2 3 3 My personnal dotfiles of my workstation powered by Void, Sway, niri, nvim and fish. 4 4 5 + You can install my nvim config with 6 + ```bash 7 + curl -L https://git.anhgelus.world/anhgelus/dotfiles/raw/branch/main/setup.sh | bash 8 + ``` 9 +
+19
setup.sh
··· 1 + #!/usr/bin/bash 2 + 3 + echo "installing nvim" 4 + 5 + curl -L -o nvim.appimage https://github.com/neovim/neovim/releases/download/v0.11.4/nvim-linux-x86_64.appimage 6 + 7 + chmod +x nvim.appimage 8 + echo 'alias nvim="~/nvim.appimage"' > setup_bash 9 + 10 + echo "setuping nvim" 11 + 12 + git clone https://git.anhgelus.world/anhgelus/dotfiles.git 13 + 14 + cp -r dotfiles/config/nvim .config 15 + 16 + rm -fr .config/nvim/lua/plugins/ultisnips.lua 17 + 18 + echo "execute 'source setup_bash' to finish the setup" 19 +