doc: reword ReadMe

This commit is contained in:
Michel 2023-11-07 19:47:37 +01:00
parent 98b16d6895
commit f23fa2463e
1 changed files with 15 additions and 8 deletions

View File

@ -101,8 +101,8 @@ git apply --stat --apply 2604.patch
- https://sw.kovidgoyal.net/kitty/binary/ - https://sw.kovidgoyal.net/kitty/binary/
- Install `JetBrains Mono` (without NF) & `NerdFontsSymbolsOnly` fonts. - Install `JetBrains Mono` (without NF) & `NerdFontsSymbolsOnly` fonts.
- Note: outside of kitty, it may be interesting to also install _JetBrains - Note: outside of kitty, it may be interesting to also install
Mono_ *with* _NF_. _JetBrains Mono_ *with* _NF_.
``` ```
sudo apt-get install kitty-terminfo sudo apt-get install kitty-terminfo
@ -117,14 +117,15 @@ So it is more coherent/simpler to copy this behaviour into Zsh.
## lazygit ## lazygit
```` ### Dependencies
sudo apt install git-delta
```` - git-delta
### Binary Releases ### Binary Releases
``` ```
LOCATION=$(curl -s https://api.github.com/repos/jesseduffield/lazygit/releases/latest \ URI=https://api.github.com/repos/jesseduffield/lazygit
LOCATION=$(curl -s $URI/releases/latest \
| grep "browser_download_url.*Linux_x86_64" \ | grep "browser_download_url.*Linux_x86_64" \
| awk '{ print $2 }' \ | awk '{ print $2 }' \
| sed 's/,$//' \ | sed 's/,$//' \
@ -153,9 +154,15 @@ go install
## neovim ## neovim
``` ### Dependencies
sudo apt install libfuse2 xsel
- kitty / NerdFont
- libfuse2
- xsel
### Binary Nightly Release
```
mkdir -p $HOME/.local/bin mkdir -p $HOME/.local/bin
cd $HOME/.local/bin cd $HOME/.local/bin