├── .github └── workflows │ └── go.yml ├── .goreleaser.yaml ├── .helix-wezterm.yaml ├── LICENSE ├── Makefile ├── README.md ├── dummy.go ├── helix-fzf.sh ├── helix-wezterm.sh ├── hxide-aichat-last-reply.sh ├── hxide-aichat.sh └── hxide-java.sh /.github/workflows/go.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quantonganh/helix-wezterm/HEAD/.github/workflows/go.yml -------------------------------------------------------------------------------- /.goreleaser.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quantonganh/helix-wezterm/HEAD/.goreleaser.yaml -------------------------------------------------------------------------------- /.helix-wezterm.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quantonganh/helix-wezterm/HEAD/.helix-wezterm.yaml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quantonganh/helix-wezterm/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quantonganh/helix-wezterm/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quantonganh/helix-wezterm/HEAD/README.md -------------------------------------------------------------------------------- /dummy.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quantonganh/helix-wezterm/HEAD/dummy.go -------------------------------------------------------------------------------- /helix-fzf.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quantonganh/helix-wezterm/HEAD/helix-fzf.sh -------------------------------------------------------------------------------- /helix-wezterm.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quantonganh/helix-wezterm/HEAD/helix-wezterm.sh -------------------------------------------------------------------------------- /hxide-aichat-last-reply.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quantonganh/helix-wezterm/HEAD/hxide-aichat-last-reply.sh -------------------------------------------------------------------------------- /hxide-aichat.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quantonganh/helix-wezterm/HEAD/hxide-aichat.sh -------------------------------------------------------------------------------- /hxide-java.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quantonganh/helix-wezterm/HEAD/hxide-java.sh --------------------------------------------------------------------------------