Files
dotfiles/.config/nvim/after/lsp/tinymist.lua
2025-06-09 09:24:30 +03:00

14 lines
478 B
Lua

-- https://myriad-dreamin.github.io/tinymist//frontend/neovim.html
return {
settings = {
formatterPrintWidth = 100, -- can't stand 120
formatterMode = "typstyle", -- or typstfmt
exportPdf = "onSave", -- "onDocumentHasTitle", -- default: never
semanticTokens = "enable",
},
single_file_support = true,
root_dir = function(bufnr, callback)
callback(vim.fs.root(bufnr, { ".git" }) or vim.fn.expand "%:p:h")
end,
}