├── .gitignore ├── .gitmodules ├── Makefile ├── README.org ├── etc ├── borg │ ├── config.el │ └── config.mk └── yasnippet │ └── snippets │ ├── ess-mode │ ├── elif │ ├── else │ ├── for │ ├── function │ └── if │ ├── markdown-mode │ └── equation │ ├── message-mode │ ├── hi │ └── hi-all │ ├── org-mode │ ├── classslides │ ├── equation │ ├── newpaper │ └── orgemail │ └── python-mode │ ├── matplotlib │ ├── numpy │ ├── pandas │ └── seaborn ├── init.el └── var ├── abbrev.el ├── eshell └── alias └── mc-list.el /.gitignore: -------------------------------------------------------------------------------- 1 | /var 2 | -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jabranham/emacs/HEAD/.gitmodules -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jabranham/emacs/HEAD/Makefile -------------------------------------------------------------------------------- /README.org: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jabranham/emacs/HEAD/README.org -------------------------------------------------------------------------------- /etc/borg/config.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jabranham/emacs/HEAD/etc/borg/config.el -------------------------------------------------------------------------------- /etc/borg/config.mk: -------------------------------------------------------------------------------- 1 | EMACS_ARGUMENTS = -q 2 | -------------------------------------------------------------------------------- /etc/yasnippet/snippets/ess-mode/elif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jabranham/emacs/HEAD/etc/yasnippet/snippets/ess-mode/elif -------------------------------------------------------------------------------- /etc/yasnippet/snippets/ess-mode/else: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jabranham/emacs/HEAD/etc/yasnippet/snippets/ess-mode/else -------------------------------------------------------------------------------- /etc/yasnippet/snippets/ess-mode/for: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jabranham/emacs/HEAD/etc/yasnippet/snippets/ess-mode/for -------------------------------------------------------------------------------- /etc/yasnippet/snippets/ess-mode/function: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jabranham/emacs/HEAD/etc/yasnippet/snippets/ess-mode/function -------------------------------------------------------------------------------- /etc/yasnippet/snippets/ess-mode/if: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jabranham/emacs/HEAD/etc/yasnippet/snippets/ess-mode/if -------------------------------------------------------------------------------- /etc/yasnippet/snippets/markdown-mode/equation: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jabranham/emacs/HEAD/etc/yasnippet/snippets/markdown-mode/equation -------------------------------------------------------------------------------- /etc/yasnippet/snippets/message-mode/hi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jabranham/emacs/HEAD/etc/yasnippet/snippets/message-mode/hi -------------------------------------------------------------------------------- /etc/yasnippet/snippets/message-mode/hi-all: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jabranham/emacs/HEAD/etc/yasnippet/snippets/message-mode/hi-all -------------------------------------------------------------------------------- /etc/yasnippet/snippets/org-mode/classslides: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jabranham/emacs/HEAD/etc/yasnippet/snippets/org-mode/classslides -------------------------------------------------------------------------------- /etc/yasnippet/snippets/org-mode/equation: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jabranham/emacs/HEAD/etc/yasnippet/snippets/org-mode/equation -------------------------------------------------------------------------------- /etc/yasnippet/snippets/org-mode/newpaper: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jabranham/emacs/HEAD/etc/yasnippet/snippets/org-mode/newpaper -------------------------------------------------------------------------------- /etc/yasnippet/snippets/org-mode/orgemail: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jabranham/emacs/HEAD/etc/yasnippet/snippets/org-mode/orgemail -------------------------------------------------------------------------------- /etc/yasnippet/snippets/python-mode/matplotlib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jabranham/emacs/HEAD/etc/yasnippet/snippets/python-mode/matplotlib -------------------------------------------------------------------------------- /etc/yasnippet/snippets/python-mode/numpy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jabranham/emacs/HEAD/etc/yasnippet/snippets/python-mode/numpy -------------------------------------------------------------------------------- /etc/yasnippet/snippets/python-mode/pandas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jabranham/emacs/HEAD/etc/yasnippet/snippets/python-mode/pandas -------------------------------------------------------------------------------- /etc/yasnippet/snippets/python-mode/seaborn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jabranham/emacs/HEAD/etc/yasnippet/snippets/python-mode/seaborn -------------------------------------------------------------------------------- /init.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jabranham/emacs/HEAD/init.el -------------------------------------------------------------------------------- /var/abbrev.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jabranham/emacs/HEAD/var/abbrev.el -------------------------------------------------------------------------------- /var/eshell/alias: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jabranham/emacs/HEAD/var/eshell/alias -------------------------------------------------------------------------------- /var/mc-list.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jabranham/emacs/HEAD/var/mc-list.el --------------------------------------------------------------------------------