Wordel: Wordle (aka Lingo) in Emacs
For the uninitiated, this is a process of elimination word game. You guess a word and each letter of your word will be color coded to reveal how it relates to the hidden word.
With straight.el
(straight-use-package '(wordel :host github :repo "progfolio/wordel" :files (:defaults "words")))
(straight-use-packge 'wordel)
- Clone this repo into your load-path
(require 'wordel)
M-x wordel
orM-x wordel-marathon
You’ll want to be in insert mode for wordel’s modes.
(evil-make-intercept-map wordel-mode-map)
(evil-make-intercept-map wordel-select-mode-map)
(evil-set-initial-state 'wordel-mode 'insert)
(evil-set-initial-state 'wordel-select-mode 'insert))
Word lists are plain text files added under wordel-words-dir
.
There should be only one word per line.