@@ -23,22 +23,24 @@ If you are experiencing issues, please make sure you have the latest versions.
2323
2424External Requirements:
2525- Basic utils: ` git ` , ` make ` , ` unzip ` , C Compiler (` gcc ` )
26- - [ ripgrep] ( https://github.com/BurntSushi/ripgrep#installation )
26+ - [ ripgrep] ( https://github.com/BurntSushi/ripgrep#installation ) ,
27+ [ fd-find] ( https://github.com/sharkdp/fd#installation )
2728- Clipboard tool (xclip/xsel/win32yank or other depending on the platform)
2829- A [ Nerd Font] ( https://www.nerdfonts.com/ ) : optional, provides various icons
2930 - if you have it set ` vim.g.have_nerd_font ` in ` init.lua ` to true
31+ - Emoji fonts (Ubuntu only, and only if you want emoji!) ` sudo apt install fonts-noto-color-emoji `
3032- Language Setup:
3133 - If you want to write Typescript, you need ` npm `
3234 - If you want to write Golang, you will need ` go `
3335 - etc.
3436
35- > ** NOTE**
37+ > [ ! NOTE]
3638> See [ Install Recipes] ( #Install-Recipes ) for additional Windows and Linux specific notes
3739> and quick install snippets
3840
3941### Install Kickstart
4042
41- > ** NOTE**
43+ > [ ! NOTE]
4244> [ Backup] ( #FAQ ) your previous configuration (if any exists)
4345
4446Neovim's configurations are located under the following paths, depending on your OS:
@@ -55,7 +57,7 @@ Neovim's configurations are located under the following paths, depending on your
5557so that you have your own copy that you can modify, then install by cloning the
5658fork to your machine using one of the commands below, depending on your OS.
5759
58- > ** NOTE**
60+ > [ ! NOTE]
5961> Your fork's URL will be something like this:
6062> ` https://github.com/<your_github_username>/kickstart.nvim.git `
6163
@@ -64,7 +66,8 @@ too - it's ignored in the kickstart repo to make maintenance easier, but it's
6466[ recommended to track it in version control] ( https://lazy.folke.io/usage/lockfile ) .
6567
6668#### Clone kickstart.nvim
67- > ** NOTE**
69+
70+ > [ !NOTE]
6871> If following the recommended step above (i.e., forking the repo), replace
6972> ` nvim-lua ` with ` <your_github_username> ` in the commands below
7073
@@ -212,14 +215,14 @@ sudo apt update
212215sudo apt install make gcc ripgrep unzip git xclip curl
213216
214217# Now we install nvim
215- curl -LO https://github.com/neovim/neovim/releases/latest/download/nvim-linux64 .tar.gz
216- sudo rm -rf /opt/nvim-linux64
217- sudo mkdir -p /opt/nvim-linux64
218- sudo chmod a+rX /opt/nvim-linux64
219- sudo tar -C /opt -xzf nvim-linux64 .tar.gz
218+ curl -LO https://github.com/neovim/neovim/releases/latest/download/nvim-linux-x86_64 .tar.gz
219+ sudo rm -rf /opt/nvim-linux-x86_64
220+ sudo mkdir -p /opt/nvim-linux-x86_64
221+ sudo chmod a+rX /opt/nvim-linux-x86_64
222+ sudo tar -C /opt -xzf nvim-linux-x86_64 .tar.gz
220223
221224# make it available in /usr/local/bin, distro installs to /usr/bin
222- sudo ln -sf /opt/nvim-linux64 /bin/nvim /usr/local/bin/
225+ sudo ln -sf /opt/nvim-linux-x86_64 /bin/nvim /usr/local/bin/
223226```
224227</details >
225228<details ><summary >Fedora Install Steps</summary >
0 commit comments