]> git.rmz.io Git - dotfiles.git/blobdiff - nvim/lua/plugins/editor.lua
lazyvim: replace LazyFile with their actual events
[dotfiles.git] / nvim / lua / plugins / editor.lua
index 5dcdccf8deb853e82422a3bacda784b25a1734bf..b8bd5aa77c0e3105b8e0c0aab0861b4343c339f0 100644 (file)
@@ -73,7 +73,7 @@ return {
     -- Finds and lists all of the TODO, HACK, BUG, etc comment
     -- in your project and loads them into a browsable list.
     cmd = { "TodoTrouble"},
-    event = "LazyFile",
+    event = { "BufReadPost", "BufNewFile", "BufWritePre" },
     -- stylua: ignore
     keys = {
       { "]t", function() require("todo-comments").jump_next() end, desc = "Next Todo Comment" },
@@ -104,7 +104,7 @@ return {
     -- git signs highlights text that has changed since the list
     -- git commit, and also lets you interactively stage & unstage
     -- hunks in a commit.
-    event = "LazyFile",
+    event = { "BufReadPost", "BufNewFile", "BufWritePre" },
     opts = {
       signs = {
         add = { text = "▎" },