mirror of
https://codeberg.org/leana8959/.files.git
synced 2025-12-06 14:49:14 +00:00
10 lines
328 B
Lua
10 lines
328 B
Lua
vim.bo.shiftwidth = 2
|
|
vim.bo.tabstop = 2
|
|
vim.bo.textwidth = 100
|
|
|
|
vim.keymap.set("n", "<leader>f", function()
|
|
local tw = vim.bo.textwidth
|
|
local saved = vim.fn.winsaveview()
|
|
vim.cmd('silent exec "%!typstyle -c ' .. tostring(tw) .. ' "')
|
|
vim.fn.winrestview(saved)
|
|
end, { desc = "ft(typst): Format with typstyle" })
|