Select the types of activity you want to include in your feed.
1-- go to the previous tab 2vim.keymap.set("n", "[<tab>", vim.cmd.tabprev) 3-- go to the next tab 4vim.keymap.set("n", "]<tab>", vim.cmd.tabnext) 5-- create a new tab with the current window 6vim.keymap.set("n", "<C-w><tab>", "<cmd>tab split<cr>")