X-Git-Url: https://git.rmz.io/dotfiles.git/blobdiff_plain/4eda6b5272f7fe9b5fabb8e5c13ef4567004b865..7d854464d9b1bd386b0eaf25f38ac3b96dd1fc18:/nvim/lua/plugins/editor.lua?ds=sidebyside diff --git a/nvim/lua/plugins/editor.lua b/nvim/lua/plugins/editor.lua index 5dcdccf..cb18528 100644 --- a/nvim/lua/plugins/editor.lua +++ b/nvim/lua/plugins/editor.lua @@ -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 = "▎" }, @@ -192,4 +192,7 @@ return { }, }, }, + { "aymericbeaumet/vim-symlink", + dependencies = { "moll/vim-bbye" }, -- NOTE: Snacks.buddelete also provides this + }, }