├── .gitignore ├── LICENSE ├── README.md ├── accent.el └── etc └── img └── screen.png /.gitignore: -------------------------------------------------------------------------------- 1 | *.elc 2 | /.github 3 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eliascotto/accent/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eliascotto/accent/HEAD/README.md -------------------------------------------------------------------------------- /accent.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eliascotto/accent/HEAD/accent.el -------------------------------------------------------------------------------- /etc/img/screen.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eliascotto/accent/HEAD/etc/img/screen.png --------------------------------------------------------------------------------