diff --git a/Cask b/Cask index 80e89c5..137bc3f 100644 --- a/Cask +++ b/Cask @@ -1,10 +1,18 @@ (source gnu) (source melpa) -(source "kuso" "http://repo.kuso.lxsameer.com/packages") ; TODO: Check these packages ; and move them to related kuso ; plugin +(package "FG42" "1.0.0" "Ultimate Emacs based IDE for true believers.") + +; TODO: Use packages in Medusa as soon as it get ready +(depends-on "FG42-Core" :git "https://github.com/FG42/FG42-Core.git" :branch "master") +(depends-on "cask") + +(development + (depends-on "FG42-Core" ) +) ;(depends-on "bind-key") ;(depends-on "cask") ;(depends-on "dash") diff --git a/fg42 b/fg42 new file mode 100755 index 0000000..c3740b0 --- /dev/null +++ b/fg42 @@ -0,0 +1,4 @@ +#! /bin/sh + +#emacs -Q --no-splash --name FG42 --title FG42 -q -l /home/lxsameer/src/FG42/FG42/fg42-config.el "$@" +emacs -l /home/lxsameer/src/FG42/FG42/fg42-config.el "$@" diff --git a/fg42-config.el b/fg42-config.el new file mode 100644 index 0000000..d06bbc6 --- /dev/null +++ b/fg42-config.el @@ -0,0 +1,2 @@ +(require 'cask "~/.cask/cask.el") +(cask-initialize "/home/lxsameer/src/FG42/FG42/")