kickstart.nvim VS lazy.nvim

Compare kickstart.nvim vs lazy.nvim and see what are their differences.

kickstart.nvim

A launch point for your personal nvim configuration (by nvim-lua)
Our great sponsors
  • InfluxDB - Power Real-Time Data Analytics at Scale
  • WorkOS - The modern identity platform for B2B SaaS
  • SaaSHub - Software Alternatives and Reviews
kickstart.nvim lazy.nvim
284 131
14,592 11,499
22.2% -
9.0 9.4
7 days ago 5 days ago
Lua Lua
MIT License Apache License 2.0
The number of mentions indicates the total number of mentions that we've tracked plus the number of user suggested alternatives.
Stars - the number of stars that a project has on GitHub. Growth - month over month growth in stars.
Activity is a relative number indicating how actively a project is being developed. Recent commits have higher weight than older ones.
For example, an activity of 9.0 indicates that a project is amongst the top 10% of the most actively developed projects that we are tracking.

kickstart.nvim

Posts with mentions or reviews of kickstart.nvim. We have used some of these posts to build our list of alternatives and similar projects. The last one was on 2024-04-05.
  • Using a venv with Neovim's Python LSP
    2 projects | dev.to | 5 Apr 2024
    I recently started coding with Neovim using kickstart.nvim as the template for my editor configuration. I downloaded the python-lsp-server package using Mason, but I was disappointed to discover that the IntelliSense on my third party dependencies didn't work. The LSP was resolving to my global Python installation, which did not have the packages from my virtual environment (venv) installed.
  • I Learned Neovim In A Weekend
    1 project | dev.to | 11 Mar 2024
    First thing I did was get kickstart.nvim. I had heard it was extremely useful (and it was). It was very easy to install. I start reading through init.lua, and it told me to run :Tutor, which is almost 1,000 lines of learning how to use Neovim, to which I obviously ran that command and started reading. Obviously, it takes a bit of time to complete :Tutor, but it's well worth it. "hjkl" wasn't too hard to get used to, also repeating motions by using numbers was useful, such as using '5dd' to delete 5 lines. I highly suggest reading this file, especially since I didn't really know about the different modes, which is probably why I failed to switch the other times. You would start writing your code, then Neovim would say that it can't find that command, you would accidently type an i and then start typing, and so on, it was a nightmare. For those that don't know the modes, here is each mode and how to get between them.
  • Kickstart.nvim: Single file launch point for a personal nvim config
    1 project | news.ycombinator.com | 7 Mar 2024
  • Neovide – a simple, no-nonsense, cross-platform GUI for Neovim
    17 projects | news.ycombinator.com | 31 Jan 2024
    I also suggest against using distributions. Instead of learning how to configure nvim itself you're learning to configure that specific distro.

    I suggest to take someone's lua config and start from there. Kickstart.nvim is a good one: https://github.com/nvim-lua/kickstart.nvim

  • It’s been an hour and I have made no progress
    2 projects | /r/neovim | 9 Dec 2023
  • Do I need NeoVIM?
    11 projects | /r/neovim | 7 Dec 2023
    1) the option I wouldn’t chose, use Kickstarter. It’s a minimal starter config, using a single init.lua that helps you build a config slowly. https://github.com/nvim-lua/kickstart.nvim
  • ready to use neovim for web development (frontend) - beginners
    4 projects | /r/neovim | 5 Dec 2023
    I highly recommend Lazyvim for if you want to have a VSCode (ish) like experience that still exposes you to configuring in Lua. Or Kickstart.nvim if you want a more "from scratch" experience
  • Search commands slow in neovim but fast in vim
    2 projects | /r/neovim | 2 Dec 2023
    In case it is helpful, I am using kickstart.nvim with only minor modifications.
  • Kickstart.emacs Starter kit for Gnu Emacs
    2 projects | /r/emacs | 13 Nov 2023
    One of the project goals is to become something like kickstart.nvim. Or, to be a reference if someone doesn't know how to do something.
  • I want to remove this "./" path on the nvim explorer
    1 project | /r/neovim | 12 Nov 2023
    Hey guys! I don't use the "./" path at all since I see it useless, I would love to remove it to be kind with my own soul, I'd love some help with this. My nvim setup is kickstart.nvim with Lua of course.

lazy.nvim

Posts with mentions or reviews of lazy.nvim. We have used some of these posts to build our list of alternatives and similar projects. The last one was on 2024-04-21.
  • How to override the colors of NeoSolarized in NeoVim
    3 projects | dev.to | 21 Apr 2024
    First, I installed NeoSolarized.nvim via lazy.nvim, so the code would be simple like the following one.
  • Easy Access to Terminal Commands in Neovim using FTerm
    6 projects | dev.to | 18 Mar 2024
    In my case, I have switched to Lazy.nvim for all of my Neovim plugin needs ( Thanks again Folke! ), so it would be great if you were at least minimally familiar with how Lazy works as well.
  • Neovim: creating keymaps in lua
    4 projects | dev.to | 11 Mar 2024
    If you've read old tutorials about Neovim configuration you've find the way they create keymaps is a little bit different from what people do now. And if you check other people's configuration sometimes you'll find they create their keymaps using lazy.nvim. This is causing confusion among Neovim users.
  • Enchula Mi Consola
    11 projects | dev.to | 19 Dec 2023
  • Pimp your CLI
    13 projects | dev.to | 19 Dec 2023
    The basic plugins will be downloaded on the first run using Lazy, a package manager for Neovim that loads only the necessary plugins as you use them. Once it's done you should be looking at a full-fledged IDE.
  • It’s been an hour and I have made no progress
    2 projects | /r/neovim | 9 Dec 2023
    it looks more like something is wrong with your neovim install rather than your config. based on this lazy.nvim issue you may have an updated neovim binary but your neovim runtime files are not up to date. try completely reinstalling neovim.
  • Do I need NeoVIM?
    11 projects | /r/neovim | 7 Dec 2023
    It is possible to manage plugins yourself, but I would recommend a plugin manager such as Lazy (https://github.com/folke/lazy.nvim). There are many more plugins that most would argue are virtually essential, but these should at least be able to get you some autocompletion and highlighting without too much messing about. Be sure to read the install instructions for each of these plugins!
  • neorg problem, all other plugins deactivate when added to init.lua
    2 projects | /r/neovim | 26 Nov 2023
    whenever i add this: ``` -- bootstrap lazy.nvim local lazypath = vim.fn.stdpath("data") .. "/lazy/lazy.nvim" if not vim.loop.fs_stat(lazypath) then vim.fn.system({ "git", "clone", "--filter=blob:none", "https://github.com/folke/lazy.nvim.git", "--branch=stable", -- latest stable release lazypath, }) end vim.opt.rtp:prepend(lazypath)
  • Ansible-based dotfiles with fancy nvchad-based neovim + tmux setup
    4 projects | /r/dotfiles | 23 Oct 2023
    Easily updatable. Versions are stored in manifests and can be easily updated with a single command. neovim's lazy-lock.json however is managed separately by lazy.
  • Packages only work when I install a new one
    1 project | /r/neovim | 21 Oct 2023
    require("keymaps") local lazypath = vim.fn.stdpath("data") .. "/lazy/lazy.nvim" if not vim.loop.fs_stat(lazypath) then vim.fn.system({ "git", "clone", "--filter=blob:none", "https://github.com/folke/lazy.nvim.git", "--branch=stable", -- latest stable release lazypath, }) end vim.opt.rtp:prepend(lazypath) require("lazy").setup({ "folke/tokyonight.nvim", {"nvim-treesitter/nvim-treesitter", build = ":TSUpdate"}, { 'nvim-telescope/telescope.nvim', tag = '0.1.4', dependencies = { 'nvim-lua/plenary.nvim' } } })

What are some alternatives?

When comparing kickstart.nvim and lazy.nvim you can also consider the following projects:

NvChad - Blazing fast Neovim config providing solid defaults and a beautiful UI, enhancing your neovim experience.

packer.nvim - A use-package inspired plugin manager for Neovim. Uses native packages, supports Luarocks dependencies, written in Lua, allows for expressive config

nvim-lua-guide - A guide to using Lua in Neovim

AstroNvim - AstroNvim is an aesthetic and feature-rich neovim config that is extensible and easy to use with a great set of plugins

LazyVim - Neovim config for the lazy

KotlinLanguageServer - Kotlin code completion, diagnostics and more for any editor/IDE using the Language Server Protocol

Neovim-from-scratch - 📚 A Neovim config designed from scratch to be understandable

nvim-treesitter - Nvim Treesitter configurations and abstraction layer

LunarVim - 🌙 LunarVim is an IDE layer for Neovim. Completely free and community driven.

gruvbox.nvim - Lua port of the most famous vim colorscheme