feat: add typst support
This commit is contained in:
parent
6a6243fd90
commit
22e70f9725
@ -60,3 +60,15 @@ vim.api.nvim_create_autocmd("FileType", {
|
||||
require('spelling').spell_keymap()
|
||||
end,
|
||||
})
|
||||
|
||||
-- Typst bindings
|
||||
local typstgroup = vim.api.nvim_create_augroup("typst", { clear = true })
|
||||
vim.api.nvim_create_autocmd("FileType", {
|
||||
pattern = { "typst" },
|
||||
group = typstgroup,
|
||||
callback = function()
|
||||
vim.keymap.set('', '<LocalLeader>mp', ':TypstWatch<CR>', { noremap = true, silent = true, desc = "[M]ake [P]review" })
|
||||
require('spelling').spell_keymap()
|
||||
end,
|
||||
})
|
||||
|
||||
|
@ -301,5 +301,10 @@ require('lazy').setup({
|
||||
cmd = { "MarkdownPreviewToggle", "MarkdownPreview", "MarkdownPreviewStop" },
|
||||
ft = { "markdown", "pandoc" },
|
||||
build = function() vim.fn["mkdp#util#install"]() end,
|
||||
},
|
||||
{
|
||||
'kaarmu/typst.vim',
|
||||
ft = 'typst',
|
||||
lazy = false,
|
||||
}
|
||||
}, {})
|
||||
|
@ -96,6 +96,7 @@ local servers = {
|
||||
'norg',
|
||||
'gitcommit',
|
||||
'rst',
|
||||
'typst'
|
||||
},
|
||||
ltex = {
|
||||
language = "auto",
|
||||
@ -118,6 +119,9 @@ local servers = {
|
||||
}
|
||||
}
|
||||
},
|
||||
tinymist = {
|
||||
exportPdf = "onType",
|
||||
},
|
||||
lua_ls = {
|
||||
Lua = {
|
||||
workspace = { checkThirdParty = false },
|
||||
|
Loading…
Reference in New Issue
Block a user