roman / golden-ratio.el

Automatic resizing of Emacs windows to the golden ratio
MIT License
590 stars 38 forks source link

el-get not recognized by emacs #8

Closed tjoozey closed 11 years ago

tjoozey commented 11 years ago

I need to know - do you have a solution to my problem.

I have installed el-get.

The emacs app does not recognize any el-get command after using M-x.

I'm looking to use el-get to install yasnippet.

Is it one of the supported packages?

roman commented 11 years ago

What version of emacs are you using?

tjoozey commented 11 years ago

24.2

Tyler Johnson Sent with Sparrow (http://www.sparrowmailapp.com/?sig)

On Monday, October 15, 2012 at 3:51 PM, Roman Gonzalez wrote:

What version of emacs are you using?

— Reply to this email directly or view it on GitHub (https://github.com/roman/golden-ratio.el/issues/8#issuecomment-9461099).

roman commented 11 years ago

Try to add a dependency manually to the el-get e.g:

(setq el-get-generate-autoloads t                                                                                                           
      el-get-sources '(
        (:name golden-ratio
         :type git
         :url "https://github.com/roman/golden-ratio.el.git")
        (:name yasnippet                                                                                                                    
         :type git                                                                                                                          
         :url "https://github.com/emacsmirror/yasnippet.git"))

(el-get 'wait '(golden-ratio yasnippet))
tjoozey commented 11 years ago

Then run M-x eval-buffer?

Tyler Johnson Sent with Sparrow (http://www.sparrowmailapp.com/?sig)

On Tuesday, October 16, 2012 at 12:29 AM, Roman Gonzalez wrote:

(setq el-get-generate-autoloads t el-get-sources '( (:name golden-ratio :type git :url "https://github.com/roman/golden-ratio.el.git") (:name yasnippet :type git :url "https://github.com/emacsmirror/yasnippet.git")) (el-get 'wait '(golden-ratio yasnippet))

tjoozey commented 11 years ago

Then run M-x eval-buffer?

Tyler Johnson Sent with Sparrow (http://www.sparrowmailapp.com/?sig)

On Tuesday, October 16, 2012 at 7:53 AM, Tyler Johnson wrote:

Then run M-x eval-buffer?

roman commented 11 years ago

Yes, check github.com/roman/emacs.d/zoo/zoo-dependencies.el to check how I'm managing my dependencies, it is a good place to start, try to have a file like that one on your emacs.d/init.el file, which gets executed each time you open emacs.

roman commented 11 years ago

I guess this is resolved.