[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
Re: optional packages on startup?
From: |
Jambunathan K |
Subject: |
Re: optional packages on startup? |
Date: |
Tue, 26 Jul 2011 12:21:46 +0530 |
User-agent: |
Gnus/5.13 (Gnus v5.13) Emacs/24.0.50 (windows-nt) |
> Hi,
> In emacs, I have a lot of things that load up (cscopes, cedet,
> ecb). Since I have to ssh into a proxy, and then into the main
> server, there's a bit of latency for emacs to start up.
Never do a (require 'package) - either for uncompiled or compiled
packages.
Always compile the installed packages - autoloads ensures that the
packages are loaded on demand.
There lots of other things that you could do but the above two steps
will ensure visible improvements.
> Is there an easy way to say 'emacs simple filename.cpp' and if simple
> is present, it skips over some number of packages? Doing emacs
> filename.cpp, however, would load all packages.
>
> Thanks!
> Jai
>
>
--