├── .editorconfig ├── .gitignore ├── .luarc.json ├── .stylua.toml ├── LICENSE ├── README.md ├── backdrops └── space.jpg ├── colors └── custom.lua ├── config ├── appearance.lua ├── bindings.lua ├── domains.lua ├── fonts.lua ├── general.lua ├── init.lua └── launch.lua ├── events ├── new-tab-button.lua ├── right-status.lua └── tab-title.lua ├── img ├── image-20240905172247861.png └── image-20240905172308289.png ├── screenshots ├── screenshot-1.png └── screenshot-2.png ├── utils ├── math.lua └── platform.lua └── wezterm.lua /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QianSong1/wezterm-config/HEAD/.editorconfig -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QianSong1/wezterm-config/HEAD/.gitignore -------------------------------------------------------------------------------- /.luarc.json: -------------------------------------------------------------------------------- 1 | { 2 | "workspace.checkThirdParty": false 3 | } -------------------------------------------------------------------------------- /.stylua.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QianSong1/wezterm-config/HEAD/.stylua.toml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QianSong1/wezterm-config/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QianSong1/wezterm-config/HEAD/README.md -------------------------------------------------------------------------------- /backdrops/space.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QianSong1/wezterm-config/HEAD/backdrops/space.jpg -------------------------------------------------------------------------------- /colors/custom.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QianSong1/wezterm-config/HEAD/colors/custom.lua -------------------------------------------------------------------------------- /config/appearance.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QianSong1/wezterm-config/HEAD/config/appearance.lua -------------------------------------------------------------------------------- /config/bindings.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QianSong1/wezterm-config/HEAD/config/bindings.lua -------------------------------------------------------------------------------- /config/domains.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QianSong1/wezterm-config/HEAD/config/domains.lua -------------------------------------------------------------------------------- /config/fonts.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QianSong1/wezterm-config/HEAD/config/fonts.lua -------------------------------------------------------------------------------- /config/general.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QianSong1/wezterm-config/HEAD/config/general.lua -------------------------------------------------------------------------------- /config/init.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QianSong1/wezterm-config/HEAD/config/init.lua -------------------------------------------------------------------------------- /config/launch.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QianSong1/wezterm-config/HEAD/config/launch.lua -------------------------------------------------------------------------------- /events/new-tab-button.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QianSong1/wezterm-config/HEAD/events/new-tab-button.lua -------------------------------------------------------------------------------- /events/right-status.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QianSong1/wezterm-config/HEAD/events/right-status.lua -------------------------------------------------------------------------------- /events/tab-title.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QianSong1/wezterm-config/HEAD/events/tab-title.lua -------------------------------------------------------------------------------- /img/image-20240905172247861.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QianSong1/wezterm-config/HEAD/img/image-20240905172247861.png -------------------------------------------------------------------------------- /img/image-20240905172308289.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QianSong1/wezterm-config/HEAD/img/image-20240905172308289.png -------------------------------------------------------------------------------- /screenshots/screenshot-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QianSong1/wezterm-config/HEAD/screenshots/screenshot-1.png -------------------------------------------------------------------------------- /screenshots/screenshot-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QianSong1/wezterm-config/HEAD/screenshots/screenshot-2.png -------------------------------------------------------------------------------- /utils/math.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QianSong1/wezterm-config/HEAD/utils/math.lua -------------------------------------------------------------------------------- /utils/platform.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QianSong1/wezterm-config/HEAD/utils/platform.lua -------------------------------------------------------------------------------- /wezterm.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QianSong1/wezterm-config/HEAD/wezterm.lua --------------------------------------------------------------------------------