| File | Date | Author | Commit |
|---|---|---|---|
| .github | 2024-04-04 |
|
[c4363e] Add a pull request template (#825) |
| doc | 2023-02-17 |
|
[3526fb] feat: move to lazy.nvim package manager and add... |
| lua | 2024-07-19 |
|
[ec627d] Added finalised plugins with changes |
| .gitignore | 2024-02-26 |
|
[8b5d48] rewrite: slimmer, trimmer and more lazy kicksta... |
| .stylua.toml | 2023-06-17 |
|
[be90f0] Use call_parentheses |
| LICENSE.md | 2022-06-26 |
|
[5788a4] license |
| README.md | 2024-07-21 |
|
[5b7b02] Update README.md to reflect minor change as a f... |
| init.lua | 2024-07-19 |
|
[ec627d] Added finalised plugins with changes |
A starting point for Neovim that is:
NOT a Neovim distribution, but instead a starting point for your configuration.
Kickstart.nvim targets only the latest
'stable' and latest
'nightly' of Neovim.
If you are experiencing issues, please make sure you have the latest versions.
External Requirements:
git, make, unzip, C Compiler (gcc)vim.g.have_nerd_font in init.lua to truenpmgoNOTE
See Install Recipes for additional Windows and Linux specific notes
and quick install snippets
NOTE
Backup your previous configuration (if any exists)
Neovim's configurations are located under the following paths, depending on your OS:
| OS | PATH |
|---|---|
| Linux, MacOS | $XDG_CONFIG_HOME/nvim, ~/.config/nvim |
| Windows (cmd) | %userprofile%\AppData\Local\nvim\ |
| Windows (powershell) | $env:USERPROFILE\AppData\Local\nvim\ |
Fork this repo
so that you have your own copy that you can modify, then install by cloning the
fork to your machine using one of the commands below, depending on your OS.
NOTE
Your fork's url will be something like this:
https://github.com/<your_github_username>/kickstart.nvim.git
NOTE
If following the recommended step above (i.e., forking the repo), replace
nvim-luawith<your_github_username>in the commands below
git clone https://github.com/sametaor/kickstart.nvim.git "${XDG_CONFIG_HOME:-$HOME/.config}"/nvim
git clone https://github.com/sametaor/kickstart.nvim.git %userprofile%\AppData\Local\nvim\
git clone https://github.com/sametaor/kickstart.nvim.git $env:USERPROFILE\AppData\Local\nvim\
Start Neovim
nvim
That's it! Lazy will install all the plugins you have. Use :Lazy to view
current plugin status. Hit q to close the window.
Read through the init.lua file in your configuration folder for more
information about extending and exploring Neovim. That also includes
examples of adding popularly requested plugins.
The Only Video You Need to Get Started with Neovim
~/.localrm -rf ~/.local/share/nvim/=nvim-NAME~/.config/nvim-kickstart and create an alias:alias nvim-kickstart='NVIM_APPNAME="nvim-kickstart" nvim'nvim-kickstart alias it will use the alternative~/.local/share/nvim-kickstart. You can apply this approach to any Neoviminit.lua a single file? Wouldn't it make sense to split it into multiple files?git clone as a basis for their own.init.luaBelow you can find OS specific install instructions for Neovim and dependencies.
After installing all the dependencies continue with the Install Kickstart step.
{'nvim-telescope/telescope-fzf-native.nvim', build = 'cmake -S. -Bbuild -DCMAKE_BUILD_TYPE=Release && cmake --build build --config Release && cmake --install build --prefix build' }
winget install --accept-source-agreements chocolatey.chocolatey
choco install -y neovim git ripgrep wget fd unzip gzip mingw make
wsl --install
wsl
sudo add-apt-repository ppa:neovim-ppa/unstable -y
sudo apt update
sudo apt install make gcc ripgrep unzip git xclip neovim
sudo add-apt-repository ppa:neovim-ppa/unstable -y
sudo apt update
sudo apt install make gcc ripgrep unzip git xclip neovim
sudo apt update
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
sudo rm -rf /opt/nvim-linux64
sudo mkdir -p /opt/nvim-linux64
sudo chmod a+rX /opt/nvim-linux64
sudo tar -C /opt -xzf nvim-linux64.tar.gz
# make it available in /usr/local/bin, distro installs to /usr/bin
sudo ln -sf /opt/nvim-linux64/bin/nvim /usr/local/bin/
sudo dnf install -y gcc make git ripgrep fd-find unzip neovim
sudo pacman -S --noconfirm --needed gcc make git ripgrep fd unzip neovim