diff --git a/.config/nvim/lua/config/lazy.lua b/.config/nvim/lua/config/lazy.lua index 05ced44e..2e4281a9 100644 --- a/.config/nvim/lua/config/lazy.lua +++ b/.config/nvim/lua/config/lazy.lua @@ -94,6 +94,12 @@ require("lazy").setup({ }) end, }, + { + "chomosuke/typst-preview.nvim", + lazy = false, -- or ft = 'typst' + version = "1.*", + opts = {}, -- lazy.nvim will implicitly calls `setup {}` + }, }, defaults = { lazy = false, diff --git a/.config/nvim/lua/plugins/lsp.lua b/.config/nvim/lua/plugins/lsp.lua index b976e0c6..25679eef 100644 --- a/.config/nvim/lua/plugins/lsp.lua +++ b/.config/nvim/lua/plugins/lsp.lua @@ -14,6 +14,7 @@ local servers = { "rust_analyzer", "stylelint_lsp", "svelte", + "tinymist", "ts_ls", "zls", } diff --git a/updates.txt b/updates.txt index f66dcc23..6ffb100f 100755 --- a/updates.txt +++ b/updates.txt @@ -761,3 +761,8 @@ doas npm uninstall -g html-minifier uglify-js && doas npm install -g html-minifi Update to the latest minor version of paru: Follow simple instructions on: https://github.com/Morganamilo/paru + +04/27/2025 +Install typst +doas pacman -S typst +And make sure to copy in your new nvim configs to ensure proper lsp and previewer plugin are installed.