From 873039505df3e411d19ebb7c2e08acce65409b0a Mon Sep 17 00:00:00 2001 From: Charles Crete Date: Fri, 10 May 2024 14:53:45 -0400 Subject: [PATCH 1/2] feat(jj): Add vim-jjdescription to jj pack --- lua/astrocommunity/pack/jj/README.md | 1 + lua/astrocommunity/pack/jj/init.lua | 1 + 2 files changed, 2 insertions(+) diff --git a/lua/astrocommunity/pack/jj/README.md b/lua/astrocommunity/pack/jj/README.md index 19dc2e970..29d8e31ec 100644 --- a/lua/astrocommunity/pack/jj/README.md +++ b/lua/astrocommunity/pack/jj/README.md @@ -9,3 +9,4 @@ This plugin pack does the following: - `jf` for files in repository (falls back to git files if not in jj repo), like `jj files` - `jd` for files with changes, like `jj diff` - `jc` for files with conflicts, like `jj resolve --list` +- Adds syntax highlighting for `.jjdescription` files (for use with `jj describe`) with [vim-jjdescription](https://github.com/avm99963/vim-jjdescription) diff --git a/lua/astrocommunity/pack/jj/init.lua b/lua/astrocommunity/pack/jj/init.lua index af22f29d5..72a3723af 100644 --- a/lua/astrocommunity/pack/jj/init.lua +++ b/lua/astrocommunity/pack/jj/init.lua @@ -57,4 +57,5 @@ return { }, }, }, + { "avm99963/vim-jjdescription" }, } From fa4a08b4eb8de4e782d4781245b57d2c5feda415 Mon Sep 17 00:00:00 2001 From: Cretezy Date: Sat, 11 May 2024 10:35:31 -0400 Subject: [PATCH 2/2] Update lua/astrocommunity/pack/jj/init.lua Co-authored-by: Uzair Aftab <48220549+Uzaaft@users.noreply.github.com> --- lua/astrocommunity/pack/jj/init.lua | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lua/astrocommunity/pack/jj/init.lua b/lua/astrocommunity/pack/jj/init.lua index 72a3723af..238bcf54b 100644 --- a/lua/astrocommunity/pack/jj/init.lua +++ b/lua/astrocommunity/pack/jj/init.lua @@ -57,5 +57,5 @@ return { }, }, }, - { "avm99963/vim-jjdescription" }, + { "avm99963/vim-jjdescription", lazy = false }, }