This is a neat little config that is
- Small
- Modular
- Feature-complete
This is modified (including the README) from kickstart. It is modified to be:
- More modular
- and Opinionated
External Requirements:
- Basic utils:
git
,make
,unzip
, C Compiler (gcc
) - ripgrep
- Clipboard tool (xclip/xsel/win32yank or other depending on the platform)
- A Nerd Font: optional, provides various icons
- if you have it set
vim.g.have_nerd_font
ininit.lua
to true
- if you have it set
- Language Setup:
- If you want to write Typescript, you need
npm
- If you want to write Golang, you will need
go
- etc.
- If you want to write Typescript, you need
NOTE 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) | %localappdata%\nvim\ |
Windows (powershell) | $env:LOCALAPPDATA\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>/sublime.nvim.git
You likely want to remove lazy-lock.json
from your fork's .gitignore
file
too - it's ignored in the sublime repo to make maintenance easier, but it's
recommended to track it in version control.
NOTE If following the recommended step above (i.e., forking the repo), replace
nvim-lua
with<your_github_username>
in the commands below
Start Neovim
nvim
That's it! Lazy will install all the plugins you have. Use :Lazy
to view
the 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.
Note
For more information about a particular plugin check its repository's documentation.