Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/frans-johansson/lazy-nvim-starter
A somewhat minimal but structured jumping-off point for Neovim with Lazy.nvim
https://github.com/frans-johansson/lazy-nvim-starter
Last synced: about 2 months ago
JSON representation
A somewhat minimal but structured jumping-off point for Neovim with Lazy.nvim
- Host: GitHub
- URL: https://github.com/frans-johansson/lazy-nvim-starter
- Owner: frans-johansson
- License: mit
- Created: 2023-03-05T18:33:19.000Z (almost 2 years ago)
- Default Branch: main
- Last Pushed: 2023-10-26T18:59:06.000Z (about 1 year ago)
- Last Synced: 2024-07-31T20:52:00.989Z (4 months ago)
- Language: Lua
- Homepage:
- Size: 17.6 KB
- Stars: 80
- Watchers: 1
- Forks: 5
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
- awesome-neovim - frans-johansson/lazy-nvim-starter - Starter boilerplate with lazy plugin manager. (Starter Templates / OS-specific)
README
# The sleepy Neovim starter
This is a basic, minimal-ish jump-off point for your Neovim journey utilizing [lazy.nvim](https://github.com/folke/lazy.nvim) for package management and breaking the config up into three main components:- `core`: This contains the most basic editor set-up, including plain Neovim options, keymaps, and some bootstrapping for lazy.nvim
- `helpers`: This is intended to house helper functions that may be `require`d elsewhere in the config
- `plugins`: Each of the .lua files in this directory should serve as a lazy.nvim plugin spec## Quickstart
If you're on a Linux system with `stow` installed, you can simply run```sh
stow --verbose --target=$HOME .
```from the root directory of this repository and be up and running!
lazy.nvim will handle the bootstrapping process on first launch. If you run into any issues, try closing Neovim and restarting it again after lazy.nvim has performed the intial bootstrap.
## Other projects
If you're looking for other options in the "Neovim config bootstrap market", here are a few cool options to consider
- [Kickstart.nvim](https://github.com/nvim-lua/kickstart.nvim)
- [Neovim from scratch](https://github.com/LunarVim/Neovim-from-scratch), by ChrisAtMachine (hosted under the LunarNvim organization in GitHub)
- [LazyVim](https://github.com/LazyVim/LazyVim)