Home

Awesome

telescope-tmuxinator.nvim

Integration for tmuxinator with telescope.nvim.

Requirements

Setup

You can setup the extension by doing

require('telescope').load_extension('tmuxinator')

Somewhere after your require('telescope').setup() call.

Available functions

require('telescope').extensions.tmuxinator.projects{}

As this extension does not support preview, using the dropdown is recommended:

require('telescope').extensions.tmuxinator.projects(require('telescope.themes').get_dropdown({}))

Mappings

MappingsAction
<CR>Select action
<C-x>Stop action

Configuration

See default configuration for full details on configuring Telescope.

Example Configuration:

telescope.setup {
  extensions = {
    tmuxinator = {
      select_action = 'switch', -- | 'stop' | 'kill'
      stop_action = 'stop', -- | 'kill'
      disable_icons = false,
    },
  },
}