this repo has no description
1
fork

Configure Feed

Select the types of activity you want to include in your feed.

added tinymist

+18
+12
lua/technoduck/lazy_plugins/lsp.lua
··· 33 33 'lua_ls', 34 34 'jedi_language_server', 35 35 'fortls', 36 + 'tinymist', 36 37 }, 37 38 handlers = { 38 39 function(server_name) ··· 71 72 } 72 73 } 73 74 }) 75 + require('lspconfig').tinymist.setup { 76 + settings = { 77 + 78 + formatterMode = "typstyle", 79 + 80 + exportPdf = "onType", 81 + 82 + semanticTokens = "disable" 83 + 84 + } 85 + } 74 86 end, 75 87 } 76 88 })
+6
lua/technoduck/lazy_plugins/typst.lua
··· 1 + return { 2 + 'chomosuke/typst-preview.nvim', 3 + lazy = false, -- or ft = 'typst' 4 + version = '1.*', 5 + opts = {dependencies_bin = { ['tinymist'] = 'tinymist' }}, -- lazy.nvim will implicitly calls `setup {}` 6 + }