This commit is contained in:
Zelong Kuang
2025-10-09 21:44:19 +11:00
parent 4da3e1927f
commit a004c2c78d
8 changed files with 200 additions and 203 deletions

View File

@@ -133,22 +133,22 @@ return {
}), }),
{ condition = tex.in_mathzone } { condition = tex.in_mathzone }
), ),
s( -- s(
{ trig = "\\%)(%a)", regTrig = true, wordTrig = false, snippetType = "autosnippet", priority = 2000 }, -- { trig = "\\%)(%a)", regTrig = true, wordTrig = false, snippetType = "autosnippet", priority = 2000 },
fmta("\\) <>", { -- fmta("\\) <>", {
f(function(_, snip) -- f(function(_, snip)
return snip.captures[1] -- return snip.captures[1]
end), -- end),
}) -- })
), -- ),
s( -- s(
{ trig = "\\](%a)", regTrig = true, wordTrig = false, snippetType = "autosnippet", priority = 2000 }, -- { trig = "\\](%a)", regTrig = true, wordTrig = false, snippetType = "autosnippet", priority = 2000 },
fmta("\\] <>", { -- fmta("\\] <>", {
f(function(_, snip) -- f(function(_, snip)
return snip.captures[1] -- return snip.captures[1]
end), -- end),
}) -- })
), -- ),
s( s(
{ trig = "lim", regTrig = true, wordTrig = false, snippetType = "autosnippet" }, { trig = "lim", regTrig = true, wordTrig = false, snippetType = "autosnippet" },
fmta("\\lim_{<>}", { fmta("\\lim_{<>}", {

View File

@@ -19,121 +19,119 @@ end
local tex = require("util.latex") local tex = require("util.latex")
return { return {
s( -- s(
{ trig = "msf", snippetType = "autosnippet", priority = 2000 }, -- { trig = "msf", snippetType = "autosnippet", priority = 2000 },
fmta("\\mathsf{<>}", { -- fmta("\\mathsf{<>}", {
d(1, get_visual), -- d(1, get_visual),
}), -- }),
{ condition = tex.in_mathzone } -- { condition = tex.in_mathzone }
), -- ),
s( -- s(
{ trig = "msf", snippetType = "autosnippet" }, -- { trig = "msf", snippetType = "autosnippet" },
fmta("\\mathsf{<>}", { -- fmta("\\mathsf{<>}", {
i(0), -- i(0),
}), -- }),
{ condition = tex.in_mathzone } -- { condition = tex.in_mathzone }
), -- ),
s( -- s(
{ trig = "bf", snippetType = "autosnippet" }, -- { trig = "bf", snippetType = "autosnippet" },
fmta("\\mathbf{<>}", { -- fmta("\\mathbf{<>}", {
i(1), -- i(1),
}), -- }),
{ condition = tex.in_mathzone } -- { condition = tex.in_mathzone }
), -- ),
s( -- s(
{ trig = "cal", snippetType = "autosnippet", priority = 2000 }, -- { trig = "cal", snippetType = "autosnippet", priority = 2000 },
fmta("\\mathcal{<>}", { -- fmta("\\mathcal{<>}", {
d(1, get_visual), -- d(1, get_visual),
}), -- }),
{ condition = tex.in_mathzone } -- { condition = tex.in_mathzone }
), -- ),
s( -- s(
{ trig = "cal", snippetType = "autosnippet" }, -- { trig = "cal", snippetType = "autosnippet" },
fmta("\\mathcal{<>}", { -- fmta("\\mathcal{<>}", {
i(0), -- i(0),
}), -- }),
{ condition = tex.in_mathzone } -- { condition = tex.in_mathzone }
), -- ),
s( -- s(
{ trig = "scr", snippetType = "autosnippet", priority = 2000 }, -- { trig = "scr", snippetType = "autosnippet", priority = 2000 },
fmta("\\mathscr{<>}", { -- fmta("\\mathscr{<>}", {
d(1, get_visual), -- d(1, get_visual),
}), -- }),
{ condition = tex.in_mathzone } -- { condition = tex.in_mathzone }
), -- ),
s( -- s(
{ trig = "scr", snippetType = "autosnippet" }, -- { trig = "scr", snippetType = "autosnippet" },
fmta("\\mathscr{<>}", { -- fmta("\\mathscr{<>}", {
i(0), -- i(0),
}), -- }),
{ condition = tex.in_mathzone } -- { condition = tex.in_mathzone }
), -- ),
s( -- s(
{ trig = "mbb", snippetType = "autosnippet", priority = 2000 }, -- { trig = "mbb", snippetType = "autosnippet", priority = 2000 },
fmta("\\mathbb{<>}", { -- fmta("\\mathbb{<>}", {
d(1, get_visual), -- d(1, get_visual),
}), -- }),
{ condition = tex.in_mathzone } -- { condition = tex.in_mathzone }
), -- ),
s( -- s(
{ trig = "mbb", snippetType = "autosnippet" }, -- { trig = "mbb", snippetType = "autosnippet" },
fmta("\\mathbb{<>}", { -- fmta("\\mathbb{<>}", {
i(0), -- i(0),
}), -- }),
{ condition = tex.in_mathzone } -- { condition = tex.in_mathzone }
), -- ),
s( -- s(
{ trig = "mrm", snippetType = "autosnippet", priority = 2000 }, -- { trig = "mrm", snippetType = "autosnippet", priority = 2000 },
fmta("\\mathrm{<>}", { -- fmta("\\mathrm{<>}", {
d(1, get_visual), -- d(1, get_visual),
}), -- }),
{ condition = tex.in_mathzone } -- { condition = tex.in_mathzone }
), -- ),
s( -- s(
{ trig = "mrm", snippetType = "autosnippet" }, -- { trig = "mrm", snippetType = "autosnippet" },
fmta("\\mathrm{<>}", { -- fmta("\\mathrm{<>}", {
i(0), -- i(0),
}), -- }),
{ condition = tex.in_mathzone } -- { condition = tex.in_mathzone }
), -- ),
s( -- s(
{ trig = "tit", snippetType = "autosnippet", priority = 2000 }, -- { trig = "tit", snippetType = "autosnippet", priority = 2000 },
fmta("\\textit{<>}", { -- fmta("\\textit{<>}", {
d(1, get_visual), -- d(1, get_visual),
}) -- })
), -- ),
s( -- s(
{ trig = "tit", snippetType = "autosnippet" }, -- { trig = "tit", snippetType = "autosnippet" },
fmta("\\textit{<>}", { -- fmta("\\textit{<>}", {
i(0), -- i(0),
}) -- })
), -- ),
s( -- s(
{ trig = "ttt", snippetType = "autosnippet" }, -- { trig = "ttt", snippetType = "autosnippet" },
fmta("\\texttt{<>}", { -- fmta("\\texttt{<>}", {
i(0), -- i(0),
}) -- })
), -- ),
s( -- s(
{ trig = "tbf", snippetType = "autosnippet", priority = 2000 }, -- { trig = "tbf", snippetType = "autosnippet", priority = 2000 },
fmta("\\textbf{<>}", { -- fmta("\\textbf{<>}", {
d(1, get_visual), -- d(1, get_visual),
}) -- })
), -- ),
s( -- s(
{ trig = "tbf", snippetType = "autosnippet" }, -- { trig = "tbf", snippetType = "autosnippet" },
fmta("\\textbf{<>}", { -- fmta("\\textbf{<>}", {
i(0), -- i(0),
}) -- })
), -- ),
s( -- s(
{ trig = "qq", snippetType = "autosnippet" }, -- { trig = "qq", snippetType = "autosnippet" },
fmta("\\text{<>}", { -- fmta("\\text{<>}", {
i(1), -- i(1),
}), -- }),
{ condition = tex.in_mathzone } -- { condition = tex.in_mathzone }
), -- ),
s({ trig = "CC", snippetType = "autosnippet" }, -- s({ trig = "CC", snippetType = "autosnippet" }, t("\\mathbb{C}"), { condition = tex.in_mathzone() }),
t("\\mathbb{C}"),
{ condition = tex.in_mathzone() }),
} }

View File

@@ -83,22 +83,22 @@ return {
}), }),
{ condition = tex.in_mathzone } { condition = tex.in_mathzone }
), ),
s( -- s(
{ trig = "%)(%a)", regTrig = true, wordTrig = false, snippetType = "autosnippet", priority = 2000 }, -- { trig = "%)(%a)", regTrig = true, wordTrig = false, snippetType = "autosnippet", priority = 2000 },
fmta(") <>", { -- fmta(") <>", {
f(function(_, snip) -- f(function(_, snip)
return snip.captures[1] -- return snip.captures[1]
end), -- end),
}) -- })
), -- ),
s( -- s(
{ trig = "](%a)", regTrig = true, wordTrig = false, snippetType = "autosnippet", priority = 2000 }, -- { trig = "](%a)", regTrig = true, wordTrig = false, snippetType = "autosnippet", priority = 2000 },
fmta("] <>", { -- fmta("] <>", {
f(function(_, snip) -- f(function(_, snip)
return snip.captures[1] -- return snip.captures[1]
end), -- end),
}) -- })
), -- ),
s( s(
{ trig = "lim", regTrig = true, wordTrig = false, snippetType = "autosnippet" }, { trig = "lim", regTrig = true, wordTrig = false, snippetType = "autosnippet" },
fmta("lim_(<>)", { fmta("lim_(<>)", {

View File

@@ -43,9 +43,9 @@ return {
s({ trig = "eps", snippetType = "autosnippet", wordTrig = false }, { s({ trig = "eps", snippetType = "autosnippet", wordTrig = false }, {
t("epsilon"), t("epsilon"),
}, { condition = tex.in_mathzone }), }, { condition = tex.in_mathzone }),
s({ trig = "vps", snippetType = "autosnippet", wordTrig = false }, { -- s({ trig = "vps", snippetType = "autosnippet", wordTrig = false }, {
t("varepsilon"), -- t("varepsilon"),
}, { condition = tex.in_mathzone }), -- }, { condition = tex.in_mathzone }),
s({ trig = "Eps", snippetType = "autosnippet", wordTrig = false }, { s({ trig = "Eps", snippetType = "autosnippet", wordTrig = false }, {
t("Epsilon"), t("Epsilon"),
}, { condition = tex.in_mathzone }), }, { condition = tex.in_mathzone }),
@@ -148,12 +148,12 @@ return {
s({ trig = "Phi", snippetType = "autosnippet", wordTrig = false }, { s({ trig = "Phi", snippetType = "autosnippet", wordTrig = false }, {
t("Phi"), t("Phi"),
}, { condition = tex.in_mathzone }), }, { condition = tex.in_mathzone }),
s({ trig = "vhi", snippetType = "autosnippet", wordTrig = false }, { -- s({ trig = "vhi", snippetType = "autosnippet", wordTrig = false }, {
t("varphi"), -- t("varphi"),
}, { condition = tex.in_mathzone }), -- }, { condition = tex.in_mathzone }),
s({ trig = "Vhi", snippetType = "autosnippet", wordTrig = false }, { -- s({ trig = "Vhi", snippetType = "autosnippet", wordTrig = false }, {
t("Varphi"), -- t("Varphi"),
}, { condition = tex.in_mathzone }), -- }, { condition = tex.in_mathzone }),
s({ trig = "chi", snippetType = "autosnippet", wordTrig = false }, { s({ trig = "chi", snippetType = "autosnippet", wordTrig = false }, {
t("chi"), t("chi"),
}, { condition = tex.in_mathzone }), }, { condition = tex.in_mathzone }),

View File

@@ -39,8 +39,11 @@ return {
s({ trig = "to", wordTrig = false, snippetType = "autosnippet" }, { s({ trig = "to", wordTrig = false, snippetType = "autosnippet" }, {
t("->"), t("->"),
}, { condition = tex.in_mathzone }), }, { condition = tex.in_mathzone }),
-- s({ trig = "==", wordTrig = false, snippetType = "autosnippet" }, {
-- t("&="),
-- }, { condition = tex.in_mathzone }),
s({ trig = "iff", wordTrig = false, snippetType = "autosnippet" }, { s({ trig = "iff", wordTrig = false, snippetType = "autosnippet" }, {
t("iff"), t("<==>"),
}, { condition = tex.in_mathzone }), }, { condition = tex.in_mathzone }),
s({ trig = "notin", wordTrig = false, snippetType = "autosnippet" }, { s({ trig = "notin", wordTrig = false, snippetType = "autosnippet" }, {
t("in.not"), t("in.not"),
@@ -118,7 +121,7 @@ return {
t("subset"), t("subset"),
}, { condition = tex.in_mathzone }), }, { condition = tex.in_mathzone }),
s({ trig = "subset=", wordTrig = false, snippetType = "autosnippet" }, { s({ trig = "subset=", wordTrig = false, snippetType = "autosnippet" }, {
t("supset.eq"), t("subset.eq"),
}, { condition = tex.in_mathzone }), }, { condition = tex.in_mathzone }),
s({ trig = "sup", wordTrig = false, snippetType = "autosnippet" }, { s({ trig = "sup", wordTrig = false, snippetType = "autosnippet" }, {
t("supset"), t("supset"),
@@ -162,9 +165,6 @@ return {
s({ trig = "hbar", wordTrig = false, snippetType = "autosnippet", priority = 1500 }, { s({ trig = "hbar", wordTrig = false, snippetType = "autosnippet", priority = 1500 }, {
t("hbar"), t("hbar"),
}, { condition = tex.in_mathzone }), }, { condition = tex.in_mathzone }),
s({ trig = "ns", wordTrig = false, snippetType = "autosnippet" }, {
t("unlhd"),
}, { condition = tex.in_mathzone }),
s({ trig = "eqv", wordTrig = false, snippetType = "autosnippet" }, { s({ trig = "eqv", wordTrig = false, snippetType = "autosnippet" }, {
t("equiv"), t("equiv"),
}, { condition = tex.in_mathzone }), }, { condition = tex.in_mathzone }),
@@ -201,16 +201,16 @@ return {
s({ trig = "cong", snippetType = "autosnippet" }, { s({ trig = "cong", snippetType = "autosnippet" }, {
t("cong"), t("cong"),
}, { condition = tex.in_mathzone }), }, { condition = tex.in_mathzone }),
s( -- s(
{ trig = "b|", wordTrig = false, snippetType = "autosnippet" }, -- { trig = "b|", wordTrig = false, snippetType = "autosnippet" },
fmta( -- fmta(
[[ -- [[
\Big|_(<>) -- \Big|_(<>)
]], -- ]],
{ i(1) } -- { i(1) }
), -- ),
{ condition = tex.in_mathzone } -- { condition = tex.in_mathzone }
), -- ),
s( s(
{ trig = "jo", wordTrig = false, snippetType = "autosnippet" }, { trig = "jo", wordTrig = false, snippetType = "autosnippet" },
fmta( fmta(

View File

@@ -1,73 +1,71 @@
{ {
"CopilotChat.nvim": { "branch": "main", "commit": "1e06be97df058fa0bb4af54659c39918a4999c86" },
"LazyVim": { "branch": "main", "commit": "dc1ffa5bcb66f46284f91a8593dda5c7c54a1824" }, "LazyVim": { "branch": "main", "commit": "dc1ffa5bcb66f46284f91a8593dda5c7c54a1824" },
"LuaSnip": { "branch": "master", "commit": "73813308abc2eaeff2bc0d3f2f79270c491be9d7" }, "LuaSnip": { "branch": "master", "commit": "73813308abc2eaeff2bc0d3f2f79270c491be9d7" },
"SchemaStore.nvim": { "branch": "main", "commit": "8e17e50b519ba360bcfd5dfb5843ccac9be500ba" }, "SchemaStore.nvim": { "branch": "main", "commit": "7d0a0b914437bfefcb17d0a7f83d9f2147cc2d28" },
"aerial.nvim": { "branch": "master", "commit": "5e687b5a14004fa2dd9eccbee042b96869fe1557" }, "aerial.nvim": { "branch": "master", "commit": "5e687b5a14004fa2dd9eccbee042b96869fe1557" },
"alpha-nvim": { "branch": "main", "commit": "2b3cbcdd980cae1e022409289245053f62fb50f6" }, "alpha-nvim": { "branch": "main", "commit": "2b3cbcdd980cae1e022409289245053f62fb50f6" },
"avante.nvim": { "branch": "main", "commit": "26e40e5483db90c593bf09466bc6cbe5a7711381" }, "avante.nvim": { "branch": "main", "commit": "26e40e5483db90c593bf09466bc6cbe5a7711381" },
"blink-copilot": { "branch": "main", "commit": "5d35fd07fcc148be20442da1bdd2407e03263d7d" },
"blink.cmp": { "branch": "main", "commit": "327fff91fe6af358e990be7be1ec8b78037d2138" }, "blink.cmp": { "branch": "main", "commit": "327fff91fe6af358e990be7be1ec8b78037d2138" },
"bufferline.nvim": { "branch": "main", "commit": "655133c3b4c3e5e05ec549b9f8cc2894ac6f51b3" }, "bufferline.nvim": { "branch": "main", "commit": "655133c3b4c3e5e05ec549b9f8cc2894ac6f51b3" },
"catppuccin": { "branch": "main", "commit": "c89184526212e04feffbddda9d06b041a8fca416" }, "catppuccin": { "branch": "main", "commit": "af58927c55c9f3272c940ff02b3cee94a1249f26" },
"chezmoi.nvim": { "branch": "main", "commit": "8b426285c2b0acb9b0dd46789193fa97f6480b99" }, "chezmoi.nvim": { "branch": "main", "commit": "8b426285c2b0acb9b0dd46789193fa97f6480b99" },
"chezmoi.vim": { "branch": "main", "commit": "ca5f2ed602046d5662cb76d845c4b510aae0ce84" }, "chezmoi.vim": { "branch": "main", "commit": "ca5f2ed602046d5662cb76d845c4b510aae0ce84" },
"clangd_extensions.nvim": { "branch": "main", "commit": "b67cc417d9020fb4b83d46662351b4d16894905e" }, "clangd_extensions.nvim": { "branch": "main", "commit": "b67cc417d9020fb4b83d46662351b4d16894905e" },
"cmake-tools.nvim": { "branch": "master", "commit": "88e07c6bff838a5bda2f461e9c1122b79ff0829f" }, "cmake-tools.nvim": { "branch": "master", "commit": "88e07c6bff838a5bda2f461e9c1122b79ff0829f" },
"code_runner.nvim": { "branch": "main", "commit": "a0aa4325ea2958ba21d77d181a838e74be6267cd" }, "code_runner.nvim": { "branch": "main", "commit": "a0aa4325ea2958ba21d77d181a838e74be6267cd" },
"competitest.nvim": { "branch": "master", "commit": "b42c06ca308906f07912ba9aff015ac2c0831f85" }, "competitest.nvim": { "branch": "master", "commit": "b42c06ca308906f07912ba9aff015ac2c0831f85" },
"conform.nvim": { "branch": "master", "commit": "9d6f881a4047a51c7709223dcf24e967633c6523" }, "conform.nvim": { "branch": "master", "commit": "fbcb4fa7f34bfea9be702ffff481a8e336ebf6ed" },
"copilot.lua": { "branch": "master", "commit": "3cd5086c28c5769f5db147721f457a3e081de254" }, "copilot.lua": { "branch": "master", "commit": "30b98a4c25d6152c14084020f703b6d56e1f1122" },
"cord.nvim": { "branch": "master", "commit": "1aadec47743e6cfe77ae6860a5b4305a465f03be" }, "cord.nvim": { "branch": "master", "commit": "1aadec47743e6cfe77ae6860a5b4305a465f03be" },
"dial.nvim": { "branch": "master", "commit": "f0404ec1f83a03f2c3457e60087c6331d1cbb83f" }, "dial.nvim": { "branch": "master", "commit": "f0404ec1f83a03f2c3457e60087c6331d1cbb83f" },
"flash.nvim": { "branch": "main", "commit": "b68bda044d68e4026c4e1ec6df3c5afd7eb8e341" }, "flash.nvim": { "branch": "main", "commit": "2febce67ff9cf7638d2569d17c41af02c38401eb" },
"gitsigns.nvim": { "branch": "main", "commit": "1ee5c1fd068c81f9dd06483e639c2aa4587dc197" }, "gitsigns.nvim": { "branch": "main", "commit": "1ee5c1fd068c81f9dd06483e639c2aa4587dc197" },
"grug-far.nvim": { "branch": "main", "commit": "48f9afb684de1c191af7bed96bc1db85ba33f6a4" }, "grug-far.nvim": { "branch": "main", "commit": "48f9afb684de1c191af7bed96bc1db85ba33f6a4" },
"inc-rename.nvim": { "branch": "main", "commit": "7c79416330364976955ec8059fe3832b72ee1271" }, "inc-rename.nvim": { "branch": "main", "commit": "7c79416330364976955ec8059fe3832b72ee1271" },
"lazy.nvim": { "branch": "main", "commit": "6c3bda4aca61a13a9c63f1c1d1b16b9d3be90d7a" }, "lazy.nvim": { "branch": "main", "commit": "6c3bda4aca61a13a9c63f1c1d1b16b9d3be90d7a" },
"lazydev.nvim": { "branch": "main", "commit": "258d2a5ef4a3e3d6d9ba9da72c9725c53e9afcbd" }, "lazydev.nvim": { "branch": "main", "commit": "e28ce52fc7ff79fcb76f0e79ee6fb6182fca90b9" },
"lean.nvim": { "branch": "main", "commit": "da14a193b5ef5b1544582c70dafb6a9123e56751" }, "lean.nvim": { "branch": "main", "commit": "6839dec855abf562a908abb00654b4a99156315f" },
"lualine.nvim": { "branch": "master", "commit": "b8c23159c0161f4b89196f74ee3a6d02cdc3a955" }, "lualine.nvim": { "branch": "master", "commit": "b8c23159c0161f4b89196f74ee3a6d02cdc3a955" },
"markdown-preview.nvim": { "branch": "master", "commit": "a923f5fc5ba36a3b17e289dc35dc17f66d0548ee" }, "markdown-preview.nvim": { "branch": "master", "commit": "a923f5fc5ba36a3b17e289dc35dc17f66d0548ee" },
"mason-lspconfig.nvim": { "branch": "main", "commit": "155eac5d8609a2f110041f8ac3491664cc126354" }, "mason-lspconfig.nvim": { "branch": "main", "commit": "6bdb14f230de0904229ec367b410fb817e59b072" },
"mason-nvim-dap.nvim": { "branch": "main", "commit": "86389a3dd687cfaa647b6f44731e492970034baa" }, "mason-nvim-dap.nvim": { "branch": "main", "commit": "86389a3dd687cfaa647b6f44731e492970034baa" },
"mason.nvim": { "branch": "main", "commit": "ad7146aa61dcaeb54fa900144d768f040090bff0" }, "mason.nvim": { "branch": "main", "commit": "ad7146aa61dcaeb54fa900144d768f040090bff0" },
"mini.ai": { "branch": "main", "commit": "11c57180bc9084089206e211ac7aa598bedc9673" }, "mini.ai": { "branch": "main", "commit": "11c57180bc9084089206e211ac7aa598bedc9673" },
"mini.hipatterns": { "branch": "main", "commit": "5629d5fba132b4ab0b3f0039549308421f65ff45" }, "mini.hipatterns": { "branch": "main", "commit": "5629d5fba132b4ab0b3f0039549308421f65ff45" },
"mini.icons": { "branch": "main", "commit": "284798619aed9f4c1ac1b9417b9a5e3b4b85ef3a" }, "mini.icons": { "branch": "main", "commit": "284798619aed9f4c1ac1b9417b9a5e3b4b85ef3a" },
"mini.pairs": { "branch": "main", "commit": "b9aada8c0e59f2b938e98fbf4eae0799eba96ad9" }, "mini.pairs": { "branch": "main", "commit": "b9aada8c0e59f2b938e98fbf4eae0799eba96ad9" },
"mini.surround": { "branch": "main", "commit": "61db6babafbd10e862a7ac4713fa043126329247" }, "mini.surround": { "branch": "main", "commit": "fc6fbc319b2d686c524d71c7feda20f71af15b8e" },
"neo-tree.nvim": { "branch": "main", "commit": "9130e58424ad95bf2dd8b40afbb8cf04d648638c" }, "neo-tree.nvim": { "branch": "main", "commit": "0c29e3795b9105d68390d2fdfd430409ef8c5d65" },
"neotest": { "branch": "master", "commit": "2cf3544fb55cdd428a9a1b7154aea9c9823426e8" }, "neotest": { "branch": "master", "commit": "2cf3544fb55cdd428a9a1b7154aea9c9823426e8" },
"neotest-python": { "branch": "master", "commit": "7cab6e2ecc260bf61b97ca147574a470bd880cbd" }, "neotest-python": { "branch": "master", "commit": "7cab6e2ecc260bf61b97ca147574a470bd880cbd" },
"noice.nvim": { "branch": "main", "commit": "0427460c2d7f673ad60eb02b35f5e9926cf67c59" }, "noice.nvim": { "branch": "main", "commit": "38c702be0d8fea81527ee6a73e1e834e72481193" },
"nui.nvim": { "branch": "main", "commit": "de740991c12411b663994b2860f1a4fd0937c130" }, "nui.nvim": { "branch": "main", "commit": "de740991c12411b663994b2860f1a4fd0937c130" },
"nvim-conda": { "branch": "main", "commit": "7e63124d98f48a3bb255eaa71d1602db610b9047" }, "nvim-conda": { "branch": "main", "commit": "7e63124d98f48a3bb255eaa71d1602db610b9047" },
"nvim-dap": { "branch": "master", "commit": "7367cec8e8f7a0b1e4566af9a7ef5959d11206a7" }, "nvim-dap": { "branch": "master", "commit": "881f7dc17c0b4204a1d844732f95539575350e5b" },
"nvim-dap-python": { "branch": "master", "commit": "bfe572e4458e0ac876b9539a1e9f301c72db8ea0" }, "nvim-dap-python": { "branch": "master", "commit": "64652d1ae1db80870d9aac7132d76e37acd86a26" },
"nvim-dap-ui": { "branch": "master", "commit": "cf91d5e2d07c72903d052f5207511bf7ecdb7122" }, "nvim-dap-ui": { "branch": "master", "commit": "cf91d5e2d07c72903d052f5207511bf7ecdb7122" },
"nvim-dap-virtual-text": { "branch": "master", "commit": "fbdb48c2ed45f4a8293d0d483f7730d24467ccb6" }, "nvim-dap-virtual-text": { "branch": "master", "commit": "fbdb48c2ed45f4a8293d0d483f7730d24467ccb6" },
"nvim-lint": { "branch": "master", "commit": "335a6044be16d7701001059cba9baa36fbeef422" }, "nvim-lint": { "branch": "master", "commit": "9da1fb942dd0668d5182f9c8dee801b9c190e2bb" },
"nvim-lspconfig": { "branch": "master", "commit": "b8c3630ce37dfbe51910b68785a71620b072c41a" }, "nvim-lspconfig": { "branch": "master", "commit": "e688b486fe9291f151eae7e5c0b5a5c4ef980847" },
"nvim-nio": { "branch": "master", "commit": "21f5324bfac14e22ba26553caf69ec76ae8a7662" }, "nvim-nio": { "branch": "master", "commit": "21f5324bfac14e22ba26553caf69ec76ae8a7662" },
"nvim-treesitter": { "branch": "main", "commit": "b684696315a11e1b08564398bda778788eac92a9" }, "nvim-treesitter": { "branch": "main", "commit": "3ab4f2d2d20be55874e2eb575145c6928d7d7d0e" },
"nvim-treesitter-textobjects": { "branch": "main", "commit": "1b2d85d3de6114c4bcea89ffb2cd1ce9e3a19931" }, "nvim-treesitter-textobjects": { "branch": "main", "commit": "1b2d85d3de6114c4bcea89ffb2cd1ce9e3a19931" },
"nvim-ts-autotag": { "branch": "main", "commit": "c4ca798ab95b316a768d51eaaaee48f64a4a46bc" }, "nvim-ts-autotag": { "branch": "main", "commit": "c4ca798ab95b316a768d51eaaaee48f64a4a46bc" },
"overseer.nvim": { "branch": "master", "commit": "fe7b2f9ba263e150ab36474dfc810217b8cf7400" }, "overseer.nvim": { "branch": "master", "commit": "fe7b2f9ba263e150ab36474dfc810217b8cf7400" },
"persistence.nvim": { "branch": "main", "commit": "166a79a55bfa7a4db3e26fc031b4d92af71d0b51" }, "persistence.nvim": { "branch": "main", "commit": "51eef57272742b773468949f6bd0503ec3f83874" },
"plenary.nvim": { "branch": "master", "commit": "b9fd5226c2f76c951fc8ed5923d85e4de065e509" }, "plenary.nvim": { "branch": "master", "commit": "b9fd5226c2f76c951fc8ed5923d85e4de065e509" },
"render-markdown.nvim": { "branch": "main", "commit": "7e6af36c846017122e07e68803bbf95f3c729ca3" }, "render-markdown.nvim": { "branch": "main", "commit": "2064980580af7f00385859b6344c6a4737383257" },
"snacks.nvim": { "branch": "main", "commit": "bfe8c26dbd83f7c4fbc222787552e29b4eccfcc0" }, "snacks.nvim": { "branch": "main", "commit": "dae80fb393f712bd7352a20f9185f5e16b69f20f" },
"texpresso.vim": { "branch": "main", "commit": "d543df30b61ea886cb726a18c1d1d28ea36d30cc" }, "texpresso.vim": { "branch": "main", "commit": "d543df30b61ea886cb726a18c1d1d28ea36d30cc" },
"todo-comments.nvim": { "branch": "main", "commit": "304a8d204ee787d2544d8bc23cd38d2f929e7cc5" }, "todo-comments.nvim": { "branch": "main", "commit": "19d461ddd543e938eb22505fb03fa878800270b6" },
"tokyonight.nvim": { "branch": "main", "commit": "4d159616aee17796c2c94d2f5f87d2ee1a3f67c7" }, "tokyonight.nvim": { "branch": "main", "commit": "00d92e6009671493fceeb0e4baf644f5b983e6e4" },
"trouble.nvim": { "branch": "main", "commit": "f176232e7759c4f8abd923c21e3e5a5c76cd6837" }, "trouble.nvim": { "branch": "main", "commit": "c098362fe603d3922095e7db595961e020bdf2d0" },
"ts-comments.nvim": { "branch": "main", "commit": "1bd9d0ba1d8b336c3db50692ffd0955fe1bb9f0c" }, "ts-comments.nvim": { "branch": "main", "commit": "217ab9cc137fceb6659b53790bd25e608219abe1" },
"typst-preview.nvim": { "branch": "master", "commit": "dea4525d5420b7c32eebda7de15a6beb9d6574fa" }, "typst-preview.nvim": { "branch": "master", "commit": "dea4525d5420b7c32eebda7de15a6beb9d6574fa" },
"venv-selector.nvim": { "branch": "main", "commit": "5047cc065a13a55f3bd4f26b185271199690b2be" }, "venv-selector.nvim": { "branch": "main", "commit": "ffb04a0aba6dc986da3e1e4da926f8a1f6434bf5" },
"vim-startuptime": { "branch": "master", "commit": "b6f0d93f6b8cf6eee0b4c94450198ba2d6a05ff6" }, "vim-startuptime": { "branch": "master", "commit": "b6f0d93f6b8cf6eee0b4c94450198ba2d6a05ff6" },
"vimtex": { "branch": "master", "commit": "2e1bbabeb2c34bb17d7bc8cfdf8f95b16dd0db0c" }, "vimtex": { "branch": "master", "commit": "5c457a8a4dd57ca942260ff843a5482b064d9d9b" },
"which-key.nvim": { "branch": "main", "commit": "904308e6885bbb7b60714c80ab3daf0c071c1492" }, "which-key.nvim": { "branch": "main", "commit": "b4177e3eaf15fe5eb8357ebac2286d488be1ed00" },
"yanky.nvim": { "branch": "main", "commit": "04775cc6e10ef038c397c407bc17f00a2f52b378" }, "yanky.nvim": { "branch": "main", "commit": "04775cc6e10ef038c397c407bc17f00a2f52b378" },
"yazi.nvim": { "branch": "main", "commit": "3d6e3ee25e6cd6efbcfe0886411c1a5024a4a117" } "yazi.nvim": { "branch": "main", "commit": "59d2278ef616eff5d58691f07ca8992a13d5f5f4" }
} }

View File

@@ -35,7 +35,7 @@ return {
priority = 1000, priority = 1000,
opts = { opts = {
flavour = "mocha", flavour = "mocha",
transparent_background = true, -- transparent_background = true,
}, },
}, },
-- somewhere in your config: -- somewhere in your config:

View File

@@ -299,3 +299,4 @@ neovim
FHE FHE
pulldown pulldown
semidirect semidirect
Baire