
-
This is my nvim setup, I hope it’ll help you configure yours. Neovim Configs
-
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.
-
Here's my configuration that uses lazy.nvim. Hope it helps.
-
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)
-
I would like to share my dotfiles repo, which included my Neovim config with Lazy. Hope you find it useful :)
-
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
-
-
mine is very messy and it was my first time writing a config from scratch but here https://github.com/redpz/nvim
-
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.
-
Sure why not, https://github.com/safariknight/dotfiles
-
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
-
https://github.com/nvim-lua/kickstart.nvim Imo the best documented and most minimalistic setup I've seen that get's you started!
-
-
-
https://github.com/hpiaia/nvim Check this, its based on Lazyvim
-
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
Related posts
-
How to Transform Vim to a Complete IDE?
-
Anybody switch from their own configs to one of the neovim "distros"?
-
lazy.nvim only standard version of colorscheme usable
-
Neovim contextual highlighting. How to add some highlighting to the last contextual helper? (Component Component.GetComponent(Type type) part)
-
Best Rust editor?