7 lines
257 B
Lua
7 lines
257 B
Lua
-- formattig a markdown table
|
|
vim.api.nvim_set_keymap("n", "<leader>ftt", ":TableFormat<CR>", { silent = true, noremap = true })
|
|
vim.opt_local.textwidth = 80
|
|
vim.opt_local.colorcolumn = "80"
|
|
-- vim.opt_local.wrap = true
|
|
|
|
-- vim.cmd([[set briopt+=list:-1]])
|