summaryrefslogtreecommitdiffstats
path: root/nvim
diff options
context:
space:
mode:
authorDamjan 9000 <damjan.9000@gmail.com>2024-04-27 22:40:27 +0200
committerGitHub <noreply@github.com>2024-04-27 16:40:27 -0400
commita5e8a5e43d9afdce93d909cc2d8d96c322f45c5a (patch)
tree7285de7c8c618a16e564ef1a2f5ad23acd170c58 /nvim
parent7cd1b0b91c906f955383d5e5e7d12a7fca088dd7 (diff)
downloaddots-a5e8a5e43d9afdce93d909cc2d8d96c322f45c5a.tar.gz
README: add clipboard tool dependency (#886)
Fixes: #884 Neovim requires an external tool for proper system clipboard integration. Some systems install this already by default: - on Fedora xsel is already installed by default - on Windows using the choko install the win32yank is alredy installed This is not installed by default on ubuntu or debian so adding that to the dependencies list and to the install instructions snippets.
Diffstat (limited to 'nvim')
-rw-r--r--nvim/README.md7
1 files changed, 4 insertions, 3 deletions
diff --git a/nvim/README.md b/nvim/README.md
index be313bd..f445b65 100644
--- a/nvim/README.md
+++ b/nvim/README.md
@@ -24,6 +24,7 @@ If you are experiencing issues, please make sure you have the latest versions.
External Requirements:
- Basic utils: `git`, `make`, `unzip`, C Compiler (`gcc`)
- [ripgrep](https://github.com/BurntSushi/ripgrep#installation)
+- Clipboard tool (xclip/xsel/win32yank or other depending on platform)
- A [Nerd Font](https://www.nerdfonts.com/): optional, provides various icons
- if you have it set `vim.g.have_nerd_font` in `init.lua` to true
- Language Setup:
@@ -182,7 +183,7 @@ wsl --install
wsl
sudo add-apt-repository ppa:neovim-ppa/unstable -y
sudo apt update
-sudo apt install make gcc ripgrep unzip neovim
+sudo apt install make gcc ripgrep unzip git xclip neovim
```
</details>
@@ -192,14 +193,14 @@ sudo apt install make gcc ripgrep unzip neovim
```
sudo add-apt-repository ppa:neovim-ppa/unstable -y
sudo apt update
-sudo apt install make gcc ripgrep unzip git neovim
+sudo apt install make gcc ripgrep unzip git xclip neovim
```
</details>
<details><summary>Debian Install Steps</summary>
```
sudo apt update
-sudo apt install make gcc ripgrep unzip git curl
+sudo apt install make gcc ripgrep unzip git xclip curl
# Now we install nvim
curl -LO https://github.com/neovim/neovim/releases/latest/download/nvim-linux64.tar.gz