Updated vimtex and snippets
This commit is contained in:
parent
84a6b218fe
commit
10bf23a6ec
44 changed files with 4209 additions and 69 deletions
68
LuaSnip/markdown/markdown.lua
Normal file
68
LuaSnip/markdown/markdown.lua
Normal file
|
|
@ -0,0 +1,68 @@
|
|||
local helpers = require('personal.luasnip-helper-funcs')
|
||||
local get_visual = helpers.get_visual
|
||||
|
||||
local line_begin = require("luasnip.extras.expand_conditions").line_begin
|
||||
|
||||
-- Return snippet tables
|
||||
return
|
||||
{
|
||||
-- TODO NOTE
|
||||
s({trig="TODOO", snippetType="autosnippet"},
|
||||
{
|
||||
t("**TODO:** "),
|
||||
}
|
||||
),
|
||||
-- LINK; CAPTURE TEXT IN VISUAL
|
||||
s({trig="LL", wordTrig=true, snippetType="autosnippet"},
|
||||
fmta(
|
||||
[[[<>](<>)]],
|
||||
{
|
||||
d(1, get_visual),
|
||||
i(2),
|
||||
}
|
||||
)
|
||||
),
|
||||
-- LINK; CAPTURE URL IN VISUAL
|
||||
s({trig="LU", wordTrig=true, snippetType="autosnippet"},
|
||||
fmta(
|
||||
[[[<>](<>)]],
|
||||
{
|
||||
i(1),
|
||||
d(2, get_visual),
|
||||
}
|
||||
)
|
||||
),
|
||||
-- BOLDFACE TEXT
|
||||
s({trig="tbb", snippetType="autosnippet"},
|
||||
fmta(
|
||||
[[**<>**]],
|
||||
{
|
||||
d(1, get_visual),
|
||||
}
|
||||
)
|
||||
),
|
||||
-- ITALIC TEXT
|
||||
s({trig="tii", snippetType="autosnippet"},
|
||||
fmta(
|
||||
[[*<>*]],
|
||||
{
|
||||
d(1, get_visual),
|
||||
}
|
||||
)
|
||||
),
|
||||
-- UNDERLINED TEXT
|
||||
s({trig="uu", snippetType="autosnippet"},
|
||||
fmt(
|
||||
[[<u>{}</u>]],
|
||||
{
|
||||
d(1, get_visual),
|
||||
}
|
||||
)
|
||||
),
|
||||
-- Hack to remove indentation in bulleted lists
|
||||
s({trig=" --", snippetType="autosnippet"},
|
||||
{t("- ")},
|
||||
{condition = line_begin}
|
||||
),
|
||||
}
|
||||
|
||||
Loading…
Add table
Add a link
Reference in a new issue