···8989 local row, _ = unpack(vim.api.nvim_win_get_cursor(0))
90909191 -- make "-----------" seperator line at consitent length
9292- local seperator = string.rep("-", 80 - string.len(line))
9292+ local seperator = string.rep("-", 120 - string.len(line))
93939494 -- write line with seperator to current buffer at current cursor position
9595 vim.api.nvim_buf_set_lines(0, row - 1, row, true, { line .. " " .. seperator })