diff options
| author | William Hergès <william@herges.fr> | 2025-11-01 13:20:43 +0100 |
|---|---|---|
| committer | William Hergès <william@herges.fr> | 2025-11-01 13:20:43 +0100 |
| commit | 47f3ec3d3b3a7e767a172ef3c1b689f704df52d9 (patch) | |
| tree | 4ca2481d795f169a898f2b9b8a846b851f8eed81 /setup.sh | |
| parent | daee35570cf0323f69e150815eb69ce997c96195 (diff) | |
ci(nvim): script to install
Diffstat (limited to 'setup.sh')
| -rw-r--r-- | setup.sh | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/setup.sh b/setup.sh new file mode 100644 index 0000000..1efd4a3 --- /dev/null +++ b/setup.sh @@ -0,0 +1,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" + |
