Sfoglia il codice sorgente

Added the skeleton

Samuel W. Flint 7 anni fa
parent
commit
f6989fbbca
1 ha cambiato i file con 25 aggiunte e 0 eliminazioni
  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