From mboxrd@z Thu Jan 1 00:00:00 1970 From: Robert Klein Subject: Re: dotfile managment with #+BEGIN_SRC conf code blocks? Date: Fri, 22 Apr 2016 11:11:56 +0200 Message-ID: <20160422111156.201b89ae@pckr186.mpip-mainz.mpg.de> References: Mime-Version: 1.0 Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7bit Return-path: Received: from eggs.gnu.org ([2001:4830:134:3::10]:54108) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1atX8A-0003wd-SX for emacs-orgmode@gnu.org; Fri, 22 Apr 2016 05:12:07 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1atX85-0001jr-W1 for emacs-orgmode@gnu.org; Fri, 22 Apr 2016 05:12:06 -0400 Received: from gate1.mpip-mainz.mpg.de ([194.95.63.248]:25402) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1atX85-0001jY-Po for emacs-orgmode@gnu.org; Fri, 22 Apr 2016 05:12:01 -0400 In-Reply-To: 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" To: Xebar Saram Cc: org mode Hi, Xebar Saram wrote: > hi all > > im looking at this link > https://expoundite.net/guides/dotfile-management > > this sound very nice. yet it says there to put your conf in org > blocks with : #+BEGIN_SRC conf > > yet i cant see this in the org-babel-load-languages or in any contrib > files. > how does one enable the conf code blocks, any clue? Afaik you need babel only for stuff you want to be executed. I use ``#+begin_src conf'' all the time and the only thing I do is to assign a language name for LaTeX export (using the listings package) -- also for ``text'' and ``org'': ;; add "text" and "conf" to latex-listings-langs with empty (space as ;; trick) language name to be used in the LaTeX listings package. (add-to-list 'org-latex-listings-langs '(text " ")) (add-to-list 'org-latex-listings-langs '(conf " ")) (add-to-list 'org-latex-listings-langs '(nxml "XML")) (add-to-list 'org-latex-listings-langs '(org " ")) Best regards Robert