From 974d8c4bb99890e374576a4d943e99464148452f Mon Sep 17 00:00:00 2001 From: Philippe Dosch <Philippe.Dosch@loria.fr> Date: Tue, 26 Nov 2019 10:27:28 +0100 Subject: [PATCH] =?UTF-8?q?Ajout=20des=20org-bullets=20&=20des=20langages?= =?UTF-8?q?=20support=C3=A9s=20dans=20org?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .emacs | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/.emacs b/.emacs index d0299af..ed7e953 100644 --- a/.emacs +++ b/.emacs @@ -639,7 +639,7 @@ '(imenu-use-popup-menu t) '(package-selected-packages (quote - (lsp-treemacs helm-lsp company-lsp lsp-ui lsp-mode gnu-elpa-keyring-update markdown-mode flycheck-clang-analyzer flycheck-grammalecte which-key web-mode undo-tree try smex smartscan smart-mode-line-powerline-theme ruby-refactor ruby-electric robe rainbow-delimiters quelpa-use-package projectile plantuml-mode php-extras pdf-tools ox-reveal nlinum neotree multiple-cursors monokai-theme magit js2-mode irony-eldoc imenu-anywhere iedit ido-vertical-mode highlight-indent-guides helm-swoop helm-orgcard helm-flycheck helm-directory helm-css-scss helm-c-yasnippet helm-anything git-timemachine function-args flx-ido feature-mode expand-region edit-server ecb dumb-jump dired+ dic-lookup-w3m counsel company-web company-tern company-php company-jedi company-irony company-inf-ruby company-c-headers company-auctex clang-format avy auto-yasnippet anzu ac-helm))) + (org-bullets lsp-treemacs helm-lsp company-lsp lsp-ui lsp-mode gnu-elpa-keyring-update markdown-mode flycheck-clang-analyzer flycheck-grammalecte which-key web-mode undo-tree try smex smartscan smart-mode-line-powerline-theme ruby-refactor ruby-electric robe rainbow-delimiters quelpa-use-package projectile plantuml-mode php-extras pdf-tools ox-reveal nlinum neotree multiple-cursors monokai-theme magit js2-mode irony-eldoc imenu-anywhere iedit ido-vertical-mode highlight-indent-guides helm-swoop helm-orgcard helm-flycheck helm-directory helm-css-scss helm-c-yasnippet helm-anything git-timemachine function-args flx-ido feature-mode expand-region edit-server ecb dumb-jump dired+ dic-lookup-w3m counsel company-web company-tern company-php company-jedi company-irony company-inf-ruby company-c-headers company-auctex clang-format avy auto-yasnippet anzu ac-helm))) '(show-paren-mode t) '(tool-bar-mode nil)) @@ -721,6 +721,12 @@ (global-set-key (kbd "C-c b") (lambda () (interactive) (call-interactively (find-file "~/org")))) +;; Déclaration des langages qui pourront être évalués dans org +(org-babel-do-load-languages 'org-babel-load-languages + (append org-babel-load-languages + '((shell . t) + (ruby . t)))) + (global-set-key "\C-ca" 'org-agenda) (global-set-key (kbd "<f12>") 'org-agenda) ;(global-set-key "\C-cb" 'org-iswitchb) -- GitLab