- Powerful platform
- 30 years old!
- Modal interface
- e.g. Magit, Gnus, Hydra, etc.
- Vim users in the audience:
- Why do you like Vim?
| #!/usr/bin/env python | |
| from __future__ import absolute_import, division, print_function, unicode_literals | |
| import arrow | |
| import click | |
| click.disable_unicode_literals_warning = True | |
| def is_weekend(i): | |
| assert isinstance(i, arrow.Arrow) |
| (spaceline-define-segment foo | |
| "Foo Docs" | |
| (when (bound-and-true-p spaceline-foo-p) | |
| "Foo: TODO") | |
| :when active | |
| :global-override foo) | |
| (add-to-list 'spacemacs-spaceline-additional-segments '(foo)) | |
| (spaceline-spacemacs-theme '(foo)) |
| ;; Screenshot at https://twitter.com/swaroopch/status/903442255796633600 | |
| ;; Inspired by https://www.reddit.com/r/ethtrader/comments/6wxizf/single_best_feature_of_the_new_macbook/ | |
| ;; Code written for Spacemacs, will need adaptation to your Emacs setup | |
| ;; Spacemacs users: You may need to enable `spacemacs-misc` layer to ensure `request` package is installed. | |
| (defun dotspacemacs/user-config () | |
| "Configuration function for user code. | |
| This function is called at the very end of Spacemacs initialization after | |
| layers configuration. | |
| This is the place where most of your configurations should be done. Unless it is |