Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
D
dot-emacs
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Model registry
Operate
Environments
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
GitLab community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Stéphane Del Pino
dot-emacs
Commits
94b0b372
Commit
94b0b372
authored
5 years ago
by
Stéphane Del Pino
Browse files
Options
Downloads
Patches
Plain Diff
Modifie un peu le comportement d'org-mode et ajoute gnuplot
parent
f37839ba
No related branches found
No related tags found
No related merge requests found
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
Configuration.org
+16
-1
16 additions, 1 deletion
Configuration.org
with
16 additions
and
1 deletion
Configuration.org
+
16
−
1
View file @
94b0b372
...
...
@@ -121,8 +121,16 @@ Aide en ligne pour les raccourcis (/quelle touche ?/)
(which-key-mode))
#+END_SRC
** Gnuplot
Ajout du mode gnuplot, en particulier pour les interactions avec
org-mode
#+BEGIN_SRC emacs-lisp
(use-package gnuplot
:ensure t)
#+END_SRC
** Org mode
Org bullets
makes things look pretty
/
Org bullets
/ pour un plus bel affichage
#+BEGIN_SRC emacs-lisp
(use-package org
:ensure t
...
...
@@ -134,6 +142,8 @@ Org bullets makes things look pretty
:ensure t
:config
(add-hook 'org-mode-hook (lambda () (org-bullets-mode 1)))
(add-hook 'org-babel-after-execute-hook
'(lambda () (org-redisplay-inline-images)))
(add-to-list 'org-latex-packages-alist '("" "listingsutf8"))
(add-to-list 'org-latex-packages-alist '("" "minted")))
...
...
@@ -149,6 +159,8 @@ Org bullets makes things look pretty
'(org-latex-listings 'minted)
'(org-hide-emphasis-markers t))
(setq org-startup-with-inline-images t)
(setq org-latex-listings 'minted
org-latex-packages-alist '(("" "minted"))
org-latex-pdf-process
...
...
@@ -682,6 +694,9 @@ Charge les langages disponnibles pour org-mode
(dot . t)
(org . t)
(latex . t )))
(setq org-babel-python-command "python3")
(add-hook 'org-babel-after-execute-hook
'org-redisplay-inline-images)
#+END_SRC
** Parenthèses
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment