惯性聚合 高效追踪和阅读你感兴趣的博客、新闻、科技资讯
阅读原文 在惯性聚合中打开

推荐订阅源

H
Hackread – Cybersecurity News, Data Breaches, AI and More
U
Unit 42
Vercel News
Vercel News
Martin Fowler
Martin Fowler
云风的 BLOG
云风的 BLOG
爱范儿
爱范儿
MongoDB | Blog
MongoDB | Blog
J
Java Code Geeks
F
Fortinet All Blogs
MyScale Blog
MyScale Blog
C
Check Point Blog
N
Netflix TechBlog - Medium
Microsoft Azure Blog
Microsoft Azure Blog
aimingoo的专栏
aimingoo的专栏
博客园_首页
WordPress大学
WordPress大学
OSCHINA 社区最新新闻
OSCHINA 社区最新新闻
IT之家
IT之家
Last Week in AI
Last Week in AI
罗磊的独立博客
大猫的无限游戏
大猫的无限游戏
Jina AI
Jina AI
V
Visual Studio Blog
小众软件
小众软件

jdhao's digital space

Conversion between base64 and OpenCV or PIL Image 腾讯云对象存储博客图床开启 CDN 加速(不需要购买额外域名) Search and Replace in Multiple Files in Vim/Neovim Change Table Column Width in LaTeX Image or Table Side by Side in LaTeX LaTeX 并排显示图像或表格 Firenvim: Neovim inside Your Browser Content inside HTML tags missing in Latest Hugo? Creating Markdown Front Matter with Ultisnips Labelme JSON 标注格式转 voc XML 格式 Nifty Nvim Techniques That Make My Life Easier -- Series 6 macOS 下如何为视频制作字幕 Running Command Asynchronously inside Neovim Resolving Merge Conflict after Git Stash Pop Pylint: command not found? A Hands-on Experience with Neovim's Built-in LSP Support How to Convert PDF to Images with Imagemagick 互联网上常用缩略语集锦 File Backup in Neovim Converting PDF Pages to Images with Poppler Nifty Nvim Techniques That Make My Life Easier -- Series 5 Neovim Configuration for System-wide Use How to sort a list of tuple or list in Python -- lambda or itemgetter? Building A Vim Statusline from Scratch 人类第一颗原子弹爆炸始末 Distributed Training in PyTorch with Horovod Learning Expect Programming Essential Knowledge about SSH Nifty LaTeX Techniques -- Series 1 更改 Adsense 邮寄地址,重新寄送 PIN
Migrating from Packer.nvim to Lazy.nvim
2023-09-02 · via jdhao's digital space

TL;DR: Lazy.nvim is amazing. It is easy to switch and reduce your startup time immensely. Just try it!

I think Packer.nvim has been a revolutionary plugin manager after nvim 0.5. It introduces a lot of lazy loading techniques to speed up the startup process of Neovim.

Background and history#

I migrated from vim-plug to Packer.nvim in July 2021 and haven been happily using it since. The advanced lazy-loading reduced my startup time to around 250ms.

However, packer does have its own issues:

  • It introduces the packer_compiled.lua file. Each time you made changes to packer config, you need to run Packer Compile or Packer Sync to sync your changes. This is error-prone and not user-friendly, especially for novice users.
  • The Lazy loading mechanisms provided by Packer is somewhat complicated. There are settings such as cond, cmd, key, ft to control the plugin lazy loading.

At the beginning of this year (2023), the renowned plugin author folke introduced Lazy.nvim1, which quickly gained the attention of Neovim users and has been widely adopted.

Since this year, packer hasn’t been actively maintained anymore, presumably due to the introduce of Lazy.nvim. Not too long ago, Packer has officially announced that it is no longer maintained. This is the last straw that prompts me to try Lazy.nvim.

In Lazy.nvim, each plugin has a plugin spec, which specifies how you want to install the plugin and other conditions.

Simple changes#

The documentation of Lazy has a section on migrating from Packer.nvim: https://github.com/folke/lazy.nvim#packernvim. It mainly deals with some key changes for the Lazy plugin spec.

Lazy-loading events#

Lazy.nvim provides a special autocmd event called VeryLazy. Basically, you can use VeryLazy for all plugins that do not require immediate use after Nvim startup. However, for some plugins, setting the Lazy loading events to VeryLazy leads to issues. After nvim startup, these plugins do not work properly for me:

  • andymass/vim-matchup: We need to use BufRead as the event.
  • akinsho/bufferline.nvim: If we use VeryLazy for bufferline.nvim, the tabline can not be shown. I have to use BufEnter event as the trigger.
  • nvim-cmp and nvim-lspconfig: The lsp can not be attached to the current buffer if we use VeryLazy. As a result, nvim-cmp can not auto-complete using the nvim-lsp source. I changed the event to { 'BufRead', 'BufNewFile' }, and it works.

Conditional installation#

Previously when I use Packer, if I want to install a plugin based on some condition, I need to wrap the use{} statement inside the install condition:

if vim.g.is_mac then
    use { "nvim-treesitter/nvim-treesitter", ... }
end

For Lazy.nvim, we can use the enabled key from the plugin spec to control the installation condition, some thing like this:

-- only install nvim-tree on macOS
{
    "nvim-treesitter/nvim-treesitter",
    enabled = function()
      if vim.g.is_mac then
        return true
      end
      return false
    end,
    ...
  },

Multi-level dependencies?#

If plugin A depends on plugin B (A needs to be loaded after B, since A needs some functions from B), and plugin B depends on plugin C. In Packer, you would write something like this:

use { 'A', after = 'B' }
use { 'B', after = 'C' }
use { 'C' }

In Lazy.nvim, I am not sure how to express this?

{
  'B',
   dependencies = { 'A' }
},
{
  'C',
   dependencies = { 'B' }
},

{ 'A' }

Not sure if this is the correct way to do this in Lazy.nvim?

Lazy vs Packer#

After switching to Lazy.nvim, even without excessive optimization, my startup time has been decreased to around 40-70ms. Compared to previous startup time of 250ms by Packer.nvim, lazy.nvim is truly amazing.

Lazy.nvim also has a beautiful and feature-rich UI compared to the more primitive Packer UI. You can install, update, sync, profile plugins startup time with ease.

For anymore interested, you can check my current Lazy.nvim config here.

References#