Skip to content

Instantly share code, notes, and snippets.

@wooken
wooken / gist:be461d0f4c031ccb10b22574951506bb
Created April 1, 2018 07:23
alacritty-dracula-theme.yml
# Colors (Dracula)
# http://www.ur-ban.com/2017/01/07/alacritty-dracula-theme/
colors:
# Default colors
primary:
background: '0x282a36'
foreground: '0xf8f8f2'
# Normal colors
normal:
@wooken
wooken / alacritty-papercolor-light.yml
Last active March 31, 2022 05:56
PaperColor colorscheme for Alacritty
# PaperColor Light 256 - alacritty color config
# https://github.com/NLKNguyen/papercolor-theme
# https://www.reddit.com/r/vim/comments/36xzbs/vim_paper_color_theme_inspired_by_googles/crqbfpa/
colors:
# Default colors
primary:
background: '0xeeeeee'
foreground: '0x4d4d4c'
# Colors the cursor will use if `custom_cursor_colors` is true
@wooken
wooken / Makefile-venv
Created July 22, 2016 20:04
Makefile - Python virtualenv
VENV=venv
VENV_PYTHON_BIN=venv/bin/python
PIP_REQ=requirements.txt
.PHONY: example
example:
$(VENV_PYTHON_BIN) script.py
venv: $(PIP_REQ)
[ -d $(VENV) ] || virtualenv $(VENV)