/telescope-tabs

A telescope plugin for viewing and selecting your open tabs

Primary LanguageLuaGNU General Public License v3.0GPL-3.0

Description

A telescope plugin for viewing your tabs and jumping to them. This plugin is written in fennel using the wonderful nfnl made by Olical.

telescope-tabs

Installation

You will need to have telescope.nvim installed.

Then install the plugin with any plugin manager. For example with lazy:

require("lazy").setup {
  "aburd/telescope-tabs" 
}

Then register the extension somewhere:

require('telescope').load_extension('tabs')

Usage

Use in vim with :Telescope tabs.

Or setup a key binding:

nnoremap <C-j> :Telescope tabs<CR>

Config

local telescope = require("telescope")
local themes = require("telescope.themes")

telescope.setup {
  extensions = {
    tabs = {
      theme = themes.get_ivy()
    }
  },
}
  • theme - Any theme you would like the window to open up in. You can read more about themes on the telescope readme.