nvim: added typst support

This commit is contained in:
gyoder 2025-07-02 12:28:49 -06:00
parent 0ebff71776
commit 3030da719b
2 changed files with 10 additions and 0 deletions

View file

@ -52,6 +52,8 @@ vim.lsp.enable("zls")
vim.lsp.enable("gopls") vim.lsp.enable("gopls")
vim.lsp.enable("tinymist")
-- https://lsp-zero.netlify.app/blog/lsp-client-features.html -- https://lsp-zero.netlify.app/blog/lsp-client-features.html
vim.opt.completeopt = {'menu', 'menuone', 'noselect', 'noinsert'} vim.opt.completeopt = {'menu', 'menuone', 'noselect', 'noinsert'}

View file

@ -168,6 +168,14 @@ return require('packer').startup(function(use)
end end
} }
use {
'chomosuke/typst-preview.nvim',
tag = 'v1.*',
config = function()
require 'typst-preview'.setup {}
end,
}
-- use "folke/which-key.nvim" -- use "folke/which-key.nvim"