From mboxrd@z Thu Jan 1 00:00:00 1970 From: Nick Dokos Subject: Re: working on cloud Date: Wed, 08 Jan 2014 14:28:16 -0500 Message-ID: <87a9f6ff3j.fsf@alphaville.bos.redhat.com> References: <52CDA026.4050402@gmail.com> Mime-Version: 1.0 Content-Type: text/plain Return-path: Received: from eggs.gnu.org ([2001:4830:134:3::10]:46495) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1W0ynu-0001zz-En for emacs-orgmode@gnu.org; Wed, 08 Jan 2014 14:28:45 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1W0ynn-00044U-71 for emacs-orgmode@gnu.org; Wed, 08 Jan 2014 14:28:38 -0500 Received: from plane.gmane.org ([80.91.229.3]:45686) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1W0ynn-00044N-0n for emacs-orgmode@gnu.org; Wed, 08 Jan 2014 14:28:31 -0500 Received: from list by plane.gmane.org with local (Exim 4.69) (envelope-from ) id 1W0ynk-00041B-CQ for emacs-orgmode@gnu.org; Wed, 08 Jan 2014 20:28:28 +0100 Received: from nat-pool-bos-t.redhat.com ([66.187.233.206]) by main.gmane.org with esmtp (Gmexim 0.1 (Debian)) id 1AlnuQ-0007hv-00 for ; Wed, 08 Jan 2014 20:28:28 +0100 Received: from ndokos by nat-pool-bos-t.redhat.com with local (Gmexim 0.1 (Debian)) id 1AlnuQ-0007hv-00 for ; Wed, 08 Jan 2014 20:28:28 +0100 List-Id: "General discussions about Org-mode." List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: emacs-orgmode-bounces+geo-emacs-orgmode=m.gmane.org@gnu.org Sender: emacs-orgmode-bounces+geo-emacs-orgmode=m.gmane.org@gnu.org To: emacs-orgmode@gnu.org Renato writes: > Hi, > I'm learning emacs (as you probabily know :-)). > I have: > - one pc at home (linux Debian) > - one at work (windows) > > I would like to use the same configuration. > Now, I have my .org file on the cloud (so I can access it from anywhere) > But I'm starting to edit also the config file: > on Win it is: > init.el > > on linux is > emacs > on linux, the init file should be named ".emacs" (note the dot in front) and it should reside in your home directory. > so...How can I have a centralized instalation of emacs? Or, better: Is > it possible? > One possibility is to call it "init.el" on linux as well, but create a ".emacs" symbolic link to it: ln -s init.el .emacs There are many other ways, but the symlink is probably the simplest. Nick