@@ -27,18 +27,19 @@ External Requirements:
2727- Clipboard tool (xclip/xsel/win32yank or other depending on the platform)
2828- A [ Nerd Font] ( https://www.nerdfonts.com/ ) : optional, provides various icons
2929 - if you have it set ` vim.g.have_nerd_font ` in ` init.lua ` to true
30+ - Emoji fonts (Ubuntu only, and only if you want emoji!) ` sudo apt install fonts-noto-color-emoji `
3031- Language Setup:
3132 - If you want to write Typescript, you need ` npm `
3233 - If you want to write Golang, you will need ` go `
3334 - etc.
3435
35- > ** NOTE**
36+ > [ ! NOTE]
3637> See [ Install Recipes] ( #Install-Recipes ) for additional Windows and Linux specific notes
3738> and quick install snippets
3839
3940### Install Kickstart
4041
41- > ** NOTE**
42+ > [ ! NOTE]
4243> [ Backup] ( #FAQ ) your previous configuration (if any exists)
4344
4445Neovim's configurations are located under the following paths, depending on your OS:
@@ -55,7 +56,7 @@ Neovim's configurations are located under the following paths, depending on your
5556so that you have your own copy that you can modify, then install by cloning the
5657fork to your machine using one of the commands below, depending on your OS.
5758
58- > ** NOTE**
59+ > [ ! NOTE]
5960> Your fork's URL will be something like this:
6061> ` https://github.com/<your_github_username>/kickstart.nvim.git `
6162
@@ -64,7 +65,8 @@ too - it's ignored in the kickstart repo to make maintenance easier, but it's
6465[ recommended to track it in version control] ( https://lazy.folke.io/usage/lockfile ) .
6566
6667#### Clone kickstart.nvim
67- > ** NOTE**
68+
69+ > [ !NOTE]
6870> If following the recommended step above (i.e., forking the repo), replace
6971> ` nvim-lua ` with ` <your_github_username> ` in the commands below
7072
@@ -212,14 +214,14 @@ sudo apt update
212214sudo apt install make gcc ripgrep unzip git xclip curl
213215
214216# 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
217+ curl -LO https://github.com/neovim/neovim/releases/latest/download/nvim-linux-x86_64 .tar.gz
218+ sudo rm -rf /opt/nvim-linux-x86_64
219+ sudo mkdir -p /opt/nvim-linux-x86_64
220+ sudo chmod a+rX /opt/nvim-linux-x86_64
221+ sudo tar -C /opt -xzf nvim-linux-x86_64 .tar.gz
220222
221223# make it available in /usr/local/bin, distro installs to /usr/bin
222- sudo ln -sf /opt/nvim-linux64 /bin/nvim /usr/local/bin/
224+ sudo ln -sf /opt/nvim-linux-x86_64 /bin/nvim /usr/local/bin/
223225```
224226</details >
225227<details ><summary >Fedora Install Steps</summary >
0 commit comments