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

Our great sponsors
  • WorkOS - The modern identity platform for B2B SaaS
  • InfluxDB - Power Real-Time Data Analytics at Scale
  • SaaSHub - Software Alternatives and Reviews
  • 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

  • nvim-config

    Generalized and Personalized (by Alexis12119)

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

  • WorkOS

    The modern identity platform for B2B SaaS. The APIs are flexible and easy-to-use, supporting authentication, user identity, and complex enterprise features like SSO and SCIM provisioning.

  • 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)

  • 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 :)

  • 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

  • tinyvim

    Most Organized minimal Neovim PDE config for beginners ( 363 ~ LOC )

  • nvim

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

  • InfluxDB

    Power Real-Time Data Analytics at Scale. Get real-time insights from all types of time series data with InfluxDB. Ingest, query, and analyze billions of data points in real-time with unbounded cardinality.

  • dotfiles

    My Dotfiles (by SafariKnight)

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

  • 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

  • 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!

  • nvim

    neovim config (by snelling-a)

  • dotfiles

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

  • nvim

    My personal nvim configuration. (by hpiaia)

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

  • 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.

  • 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.

  • SaaSHub

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

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