From f5b016f5845f9232b58a128bcc42a70c40e94236 Mon Sep 17 00:00:00 2001 From: tiyn Date: Mon, 16 Mar 2026 03:08:32 +0100 Subject: [PATCH] added nvim setup for debian --- README.md | 19 +++++++++++++++++-- 1 file changed, 17 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index a6cd17f..54887ff 100644 --- a/README.md +++ b/README.md @@ -10,17 +10,32 @@ My debian-based/arch compatible server/root-account dotfiles. - git - tmux -- neovim - zsh - eza - sc-im (recommended) +- neovim (>0.10.0) #### Debian-based Systems -- `apt install git tmux neovim zsh` +- `apt install git tmux zsh` - get the rest manually - [eza](https://github.com/eza-community/eza) - [sc-im (recommended)](https://github.com/andmarti1424/sc-im/wiki/Ubuntu-with-XLSX-import-&-export) +- `apt install neovim` (read note below!) + +For some Debian systems it can be useful to install neovim manually to get a newer version number +than the one shipped with the slow debian release schedule. +For this the following lines can be used. + +```tex +curl -LO https://github.com/neovim/neovim/releases/latest/download/nvim-linux-x86_64.tar.gz +tar xzf nvim-linux-x86_64.tar.gz +sudo mv nvim-linux-x86_64 /usr/local/nvim +sudo ln -s /usr/local/nvim/bin/nvim /usr/local/bin/nvim +``` + +Updating works accordingly. + #### Arch-based Systems