You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
local macchiato_line_length = 80
|
|
if (vim.o.textwidth or 0) > 0 then
|
|
macchiato_line_length = vim.o.textwidth
|
|
end
|
|
vim.opt_local.formatprg = 'black-macchiato -l ' .. macchiato_line_length
|