Ver código fonte

Added the skeleton

Samuel W. Flint 7 anos atrás
pai
commit
f6989fbbca
1 arquivos alterados com 25 adições e 0 exclusões
  1. 25 0
      i3wm.el

+ 25 - 0
i3wm.el

@@ -0,0 +1,25 @@
+;;; i3wm.el --- i3wm integration library for emacs
+
+;; Copyright (C) 2016 Samuel Flint
+
+;; Author: Samuel W. Flint <swflint@flintfam.org>
+;; Version: 0.5
+;; Package-requires: ((cl-lib "0.5") json)
+;; Keywords: i3
+;; URL: https://git.flintfam.org/swflint/emacs-i3wm
+
+;;; Commentary:
+;;
+
+
+
+;;; Code:
+
+(require 'json)
+(require 'cl-lib)
+
+
+
+(provide 'i3wm)
+
+;;; i3wm.el ends here