An open API service indexing awesome lists of open source software.

https://github.com/olivercederborg/poimandres-wezterm

Poimandres colour scheme for Wezterm
https://github.com/olivercederborg/poimandres-wezterm

colorscheme pmndrs poimandres terminal theme wezterm

Last synced: 8 months ago
JSON representation

Poimandres colour scheme for Wezterm

Awesome Lists containing this project

README

          

# Poimandres for Wezterm

**⚠️ Contents of this repo have been moved to [poimandres.nvim](https://github.com/olivercederborg/poimandres.nvim) as extras, therefor this repo's contents might be outdated ⚠️**

## Screenshots

Base | Storm
:-------------------------:|:-------------------------:
![Poimandres Base](https://user-images.githubusercontent.com/47901349/179416018-ba8e24a6-3590-4eff-93cb-806d41378a0d.png) | ![Poimandres Storm](https://user-images.githubusercontent.com/47901349/179416088-89677f33-ef8a-4e2d-87e8-e9a2c93e9832.png)

## Installation

**There are two ways to apply this color scheme:**

Poimandres is now included in WezTerm, or you can use the legacy Lua version.

**WezTerm included**:

Set `color_scheme` in `wezterm.lua` to your favorite variant of the color scheme.

```lua
return {
color_scheme = "Poimandres", -- or "Poimandres Storm"
}
```

**Lua version (legacy)**:

1. Clone this repo, or download the [poimandres.lua](https://github.com/olivercederborg/poimandres-wezterm/blob/main/poimandres.lua) file.

2. **If you're on a POSIX system**: create a `colors` directory in your wezterm config path, e.g. `~/.config/wezterm/colors`. **If you're on Windows**: create a `colors` directory in the same directory as `wezterm.exe`, e.g. `C:\Program Files\WezTerm`. *If you're unsure of the config location for your system, take a look at the [WezTerm documentation](https://wezfurlong.org/wezterm/config/files.html)*

3. Move `poimandres.lua` to the `colors` directory created in step 2.

4. Add the following to your main WezTerm config file, e.g. `~/.config/wezterm/wezterm.lua`.

```lua
local wezterm = require('wezterm')
local poimandres = require('colors/poimandres').setup {}

return {
colors = poimandres,

-- rest of your config
}
```

5. *Optionally* change the flavour in the setup function.

```lua
local poimandres = require("colors/poimandres").setup {
flavour = 'storm' -- default: 'base'
}
```

6. That's it!

## Related

- [poimandres.nvim](https://github.com/olivercederborg/poimandres.nvim): Neovim version
- [poimandres-theme](https://github.com/drcmda/poimandres-theme): VSCode version
- [poimandres-alacritty](https://github.com/z0al/poimandres-alacritty): Alacritty version
- [poimandres-iterm](https://github.com/alii/poimandres-iterm): Iterm version

### Hyper theme

```bash
hyper i hyper-pmndrs
```