-
-
Notifications
You must be signed in to change notification settings - Fork 29
Expand file tree
/
Copy pathwezterm-types-plugin.wez-tmux.txt
More file actions
41 lines (32 loc) · 1.02 KB
/
Copy pathwezterm-types-plugin.wez-tmux.txt
File metadata and controls
41 lines (32 loc) · 1.02 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
*wezterm-types-plugin.wez-tmux.txt* `wez-tmux` types
WEZ-TMUX ~
You can import type annotations for `sei40kr/wez-tmux`
<https://github.com/sei40kr/wez-tmux> as shown below:
>lua
---@type WezTmux
local wez_tmux = wezterm.plugin.require("https://github.com/sei40kr/wez-tmux")
<
Or, if you’ve installed it locally:
>lua
---@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:
>lua
{
'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' } },
},
},
}
<
Generated by panvimdoc <https://github.com/kdheepak/panvimdoc>
vim:tw=78:ts=8:noet:ft=help:norl: