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
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Stéphane Del Pino
dot-emacs
Commits
d999302f
Commit
d999302f
authored
3 years ago
by
Stéphane Del Pino
Browse files
Options
Downloads
Patches
Plain Diff
Change location of org packages (repository will be obsolete soon)
parent
d0f541a9
Branches
Branches containing commit
No related tags found
No related merge requests found
Changes
2
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
Configuration.org
+1
-1
1 addition, 1 deletion
Configuration.org
init.el
+1
-4
1 addition, 4 deletions
init.el
with
2 additions
and
5 deletions
Configuration.org
+
1
−
1
View file @
d999302f
...
...
@@ -141,7 +141,7 @@ Ajout du mode ~gnuplot~, en particulier pour les interactions avec
#+BEGIN_SRC emacs-lisp
(use-package org
:ensure t
:pin
org
)
:pin
gnu
)
(setenv "BROWSER" "firefox")
...
...
This diff is collapsed.
Click to expand it.
init.el
+
1
−
4
View file @
d999302f
...
...
@@ -15,15 +15,12 @@
'
(
"melpa"
.
"http://melpa.org/packages/"
))
(
add-to-list
'package-archives
'
(
"gnu"
.
"http://elpa.gnu.org/packages/"
))
(
add-to-list
'package-archives
'
(
"org"
.
"https://orgmode.org/elpa/"
))
;; positionner is-standalone à true pour utiliser l'archive elpa
;; locale, ou la récupérer en faisant 'git submodule update --init'
(
defvar
is-standalone
(
file-exists-p
"~/.emacs.d/myelpa/archive-contents"
))
(
if
is-standalone
(
setq
package-archives
'
((
"myelpa"
.
"~/.emacs.d/myelpa/"
)
(
"org"
.
"https://orgmode.org/elpa/"
)))
(
setq
package-archives
'
((
"myelpa"
.
"~/.emacs.d/myelpa/"
)))
nil
)
;; initialise la liste des paquets
...
...
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