{"id":25639807,"url":"https://github.com/beaufour/dotemacs","last_synced_at":"2026-01-31T16:35:16.458Z","repository":{"id":5980192,"uuid":"7202307","full_name":"beaufour/dotemacs","owner":"beaufour","description":"My Emacs configuration","archived":false,"fork":false,"pushed_at":"2014-11-23T16:40:38.000Z","size":403,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":2,"default_branch":"master","last_synced_at":"2025-12-13T16:46:43.596Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":"","language":"Emacs Lisp","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":null,"status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/beaufour.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":null,"code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null}},"created_at":"2012-12-17T09:28:56.000Z","updated_at":"2014-11-23T16:40:38.000Z","dependencies_parsed_at":"2022-09-11T08:23:45.900Z","dependency_job_id":null,"html_url":"https://github.com/beaufour/dotemacs","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/beaufour/dotemacs","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/beaufour%2Fdotemacs","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/beaufour%2Fdotemacs/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/beaufour%2Fdotemacs/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/beaufour%2Fdotemacs/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/beaufour","download_url":"https://codeload.github.com/beaufour/dotemacs/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/beaufour%2Fdotemacs/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":28947689,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-01-31T14:26:55.697Z","status":"ssl_error","status_checked_at":"2026-01-31T14:26:52.545Z","response_time":128,"last_error":"SSL_connect returned=1 errno=0 peeraddr=140.82.121.6:443 state=error: unexpected eof while reading","robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":false,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":[],"created_at":"2025-02-23T03:47:28.188Z","updated_at":"2026-01-31T16:35:16.432Z","avatar_url":"https://github.com/beaufour.png","language":"Emacs Lisp","funding_links":[],"categories":[],"sub_categories":[],"readme":"Introduction\n============\nThis is my current Emacs setup.\n\nI run OS X, so I've only tested it there.\n\nRequirements\n============\n\nAll Emacs packages are either included in the repo or should be\nauto-installed by [el-get](https://github.com/dimitri/el-get). I do\ndepend on a few external utilities though:\n\n* [pyflakes](http://pypi.python.org/pypi/pyflakes)\n* [pep8](http://pypi.python.org/pypi/pep8)\n* [virtualenv](http://www.virtualenv.org/)\n* [ag](https://github.com/ggreer/the_silver_searcher)\n* [git](https://github.com/ggreer/the_silver_searcher)\n* [bzr](http://bazaar.canonical.com/en/)\n\nNote that if you don't run Emacs from the shell (on OS X) these need\nto be in your default _PATH_, which is `/usr/bin`, so if you've\ninstalled these using homebrew or something like that, you need to\nsymlink these into `/usr/bin`. Or jump through the 400 hoops it takes\nto get non-standard paths into the environment for Emacs.\n\nInstallation\n============\n\nStart by cloning this repo into `~/.emacs.d`\n\n    git clone git@github.com:beaufour/dotemacs.git ~/.emacs.d\n\nThen put this in your `~/.emacs` file:\n\n    (add-to-list 'load-path \"~/.emacs.d/\")\n    (load \"my-init\")\n\nOpen Emacs and the magic will start :)\n\nDo note that the first run will take a *long* time (as `el-get`\ndownloads modules). Also the bootstrapping might not work. If it\ndoesn't, then run this manually:\n\n    (add-to-list 'load-path \"~/.emacs.d/el-get/el-get\")\n    (require 'el-get)\n    (el-get 'sync)\n\n\nUsage\n=====\n\nMy setup is mostly centered around Python coding with a few modes for\nops/backend stuff. Some \"highlights\":\n\n* it automatically highlights Python syntax errors using\n`flymake`+`pyflakes` - use _F2_ and _F3_ to navigate between errors\n\n* run `pyflakes` and `pep8` on a file with _C-c C-w_\n\n* `git status` can be shown with _C-c C-g_\n\n* spotlight search for a filename can be done with _C-c C-o_\n\n* it detects executable files and automatically sets _x_ bit\n\n* there are some custom snippets like `main`. Try typing `main + TAB`\n  in a new file (or `mainc + TAB` for the \"chartbeat version\"). See\n  inside `~/.emacs.d/snippets` for the more/sources).\n\n\npylookup\n========\n\nAfter installation you need to generate the database for\n`pylookup`. This command generates it for Python, scipy, numpy, and\nmatplotlib:\n\n    (cd ~/.emacs.d/el-get/pylookup \u0026\u0026 ./pylookup.py -u http://docs.python.org \u0026\u0026 ./pylookup.py -a -u http://docs.scipy.org/doc/numpy/genindex.html \u0026\u0026 ./pylookup.py -a -u http://docs.scipy.org/doc/scipy/reference/genindex.html \u0026\u0026 ./pylookup.py -a -u http://matplotlib.sourceforge.net/genindex.html)\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fbeaufour%2Fdotemacs","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fbeaufour%2Fdotemacs","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fbeaufour%2Fdotemacs/lists"}