Skip to content

Latest commit

 

History

History

2016-07-16_open-west-spacemacs

Folders and files

NameName
Last commit message
Last commit date

parent directory

..
 
 
 
 
 
 
 
 

Spacemacs: The Best of Both the Emacs and Vim Worlds

Talk given at the Open West Conference 2016 on July 16, 2016 as an introduction to Spacemacs.

Meta

The slides are written in Org Mode using org-present.

I used the following Emacs Lisp from my old Emacs configuration to start the presentation:

(defun tbh/start-presentation ()
  (interactive)
  (spacemacs/load-theme 'spacemacs-light)
  (spacemacs/toggle-vi-tilde-fringe-off)
  (spacemacs/toggle-line-numbers-off)
  (spacemacs/toggle-maximize-buffer)
  (spacemacs/toggle-fill-column-indicator-off)
  (spacemacs/toggle-frame-fullscreen)
  (spacemacs/toggle-fringe-off)
  (find-file "/Users/travisbhartwell/Projects/Presentations/2016-07-16_open-west-spacemacs/presentation.org")
  (spacemacs/toggle-mode-line-off)
  (read-only-mode)
  (goto-char (point-min))
  (org-present))