Looking for some configs using lazy.nvim, to use as reference for creating my own.

This page summarizes the projects mentioned and recommended in the original post on /r/neovim

Nutrient - The #1 PDF SDK Library
Bad PDFs = bad UX. Slow load times, broken annotations, clunky UX frustrates users. Nutrient’s PDF SDKs gives seamless document experiences, fast rendering, annotations, real-time collaboration, 100+ features. Used by 10K+ devs, serving ~half a billion users worldwide. Explore the SDK for free.
nutrient.io
featured
CodeRabbit: AI Code Reviews for Developers
Revolutionize your code reviews with AI. CodeRabbit offers PR summaries, code walkthroughs, 1-click suggestions, and AST-based analysis. Boost productivity and code quality across all major languages with each PR.
coderabbit.ai
featured
  1. OsamaVim

    From an Integrated Development Environment to a Personal Development Environment.

    This is my nvim setup, I hope it’ll help you configure yours. Neovim Configs

  2. Nutrient

    Nutrient - The #1 PDF SDK Library. Bad PDFs = bad UX. Slow load times, broken annotations, clunky UX frustrates users. Nutrient’s PDF SDKs gives seamless document experiences, fast rendering, annotations, real-time collaboration, 100+ features. Used by 10K+ devs, serving ~half a billion users worldwide. Explore the SDK for free.

    Nutrient logo
  3. nvim-config

    Generalized and Personalized (by Alexis12119)

    Here's my configuration that uses lazy.nvim. Hope it helps.

  4. lazy.nvim

    💤 A modern plugin manager for Neovim

    vim.g.mapleader = " " -- Open help in a new buffer instead of a vsplit vim.api.nvim_create_autocmd('BufWinEnter', { pattern = '*', callback = function(event) if vim.bo[event.buf].filetype == 'help' then vim.cmd.only() vim.bo.buflisted=true end end, }) -- Bootstrapping 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) -- Lazy.nvim setup function local opts = { ui = { -- a number <1 is a percentage., >1 is a fixed size size = { width = 0.9, height = 0.8 }, wrap = true, -- The border to use for the UI window. Accepts same border values as |nvim_open_win()|. border = "none", }, } require("lazy").setup("plugins", opts)

  5. dotfiles

    Current dotfiles for my setup. Managed with GNU Stow (by mrs4ndman)

    I would like to share my dotfiles repo, which included my Neovim config with Lazy. Hope you find it useful :)

  6. dots-and-configs

    I use LazyVim as daily, but just for learning purposes, I'm building my own - so the LazyVim starter repo it's practically what you're looking for, but if you fancy a clean and almost plug-in-less config, I'm building my own here whenever I have a sec: https://github.com/Memnoc/dots-and-configs/tree/main/.config/FrontVim

  7. tinyvim

    Most Organized minimal Neovim PDE config for beginners ( 300 LOC )

  8. nvim

    mine is very messy and it was my first time writing a config from scratch but here https://github.com/redpz/nvim

  9. CodeRabbit

    CodeRabbit: AI Code Reviews for Developers. Revolutionize your code reviews with AI. CodeRabbit offers PR summaries, code walkthroughs, 1-click suggestions, and AST-based analysis. Boost productivity and code quality across all major languages with each PR.

    CodeRabbit logo
  10. dotfiles

    My Dotfiles (by SafariKnight)

    Sure why not, https://github.com/safariknight/dotfiles

  11. dotfiles

    Development workflow & environment setup with tmux & neovim (by krehwell)

    I love mine, I previously using packer and now migrated it to lazy.nvim slowly by slowly https://github.com/krehwell/dotfiles/tree/i3/.config/nvim

  12. kickstart.nvim

    A launch point for your personal nvim configuration

    https://github.com/nvim-lua/kickstart.nvim Imo the best documented and most minimalistic setup I've seen that get's you started!

  13. nvim

    neovim config (by snelling-a)

  14. dotfiles

    a mobile configuration, for a mobile human 💻 (by azemetre)

  15. nvim

    My personal nvim configuration. (by hpiaia)

    https://github.com/hpiaia/nvim Check this, its based on Lazyvim

  16. LazyVim

    Neovim config for the lazy

    Contrary to the advice given by others, I do not think LazyVim is a very good Neovim configuration to study to learn how things work. LazyVim is an excellent Neovim configuration and one I would recommend as a starting point in creating your own. However, it imports its plugins from the main LazyVim repo. The LazyVim starter config, other than its initialization of lazy.nvim and the single example plugin, does not provide a very good study bed. If you want to study how LazyVim configures its plugins then you have to look at https://github.com/LazyVim/LazyVim from which it imports the plugins.

  17. nvim-lazyman

    Neovim configuration manager and Lazy/Lua/Mason based Neovim config. Manage multiple Neovim configurations with the lazyman command. ☕

    There are many excellent distributions, personal configurations, and custom configurations to study. I wrote a Neovim configuration manager to make it easy for me to install, initialize, and explore multiple Neovim configurations. Most of the popular Neovim distributions and configurations are supported in this tool.

  18. SaaSHub

    SaaSHub - Software Alternatives and Reviews. SaaSHub helps you find the best software and product alternatives

    SaaSHub logo
NOTE: The number of mentions on this list indicates mentions on common posts plus user suggested alternatives. Hence, a higher number means a more popular project.

Suggest a related project

Related posts

  • How to Transform Vim to a Complete IDE?

    7 projects | dev.to | 19 Sep 2023
  • Anybody switch from their own configs to one of the neovim "distros"?

    3 projects | /r/neovim | 10 Jun 2023
  • lazy.nvim only standard version of colorscheme usable

    3 projects | /r/neovim | 11 May 2023
  • Neovim contextual highlighting. How to add some highlighting to the last contextual helper? (Component Component.GetComponent(Type type) part)

    4 projects | /r/neovim | 23 Apr 2023
  • Best Rust editor?

    6 projects | /r/rust | 9 Apr 2023

Did you know that Lua is
the 18th most popular programming language
based on number of references?