Skip to content

Latest commit

 

History

History
38 lines (30 loc) · 787 Bytes

File metadata and controls

38 lines (30 loc) · 787 Bytes

wez-tmux

You can import type annotations for sei40kr/wez-tmux as shown below:

---@type WezTmux
local wez_tmux = wezterm.plugin.require("https://github.com/sei40kr/wez-tmux")

Or, if you've installed it locally:

---@type WezTmux
local wez_tmux = require("wez-tmux.plugin")

If you're using lazydev.nvim and you have installed the plugin locally you can put this in your setup:

{
  'folke/lazydev.nvim',
  ft = 'lua',
  dependencies = { 'DrKJeff16/wezterm-types' },
  opts = {
    library = {
      -- Other library configs...
      { path = 'wezterm-types', mods = { 'wezterm' } },
      { path = 'wez-tmux', mods = { 'wez-tmux' } },
    },
  },
}