Select the types of activity you want to include in your feed.
1local opt = vim.opt 2local g = vim.g 3 4opt.scrolloff = 10 5opt.sidescrolloff = 8 6opt.cursorline = false 7 8opt.listchars = { 9 tab = " ", 10 trail = " ", 11 nbsp = " ", 12} 13 14g.snacks_animate = true