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
c31f9e6b
Commit
c31f9e6b
authored
Mar 8, 2020
by
Stéphane Del Pino
Browse files
Options
Downloads
Patches
Plain Diff
Nettoyage encore
parent
91ec6b92
No related branches found
No related tags found
No related merge requests found
Changes
2
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
.gitignore
+1
-0
1 addition, 0 deletions
.gitignore
init.el
+11
-4
11 additions, 4 deletions
init.el
with
12 additions
and
4 deletions
.gitignore
+
1
−
0
View file @
c31f9e6b
...
...
@@ -7,3 +7,4 @@ myinit.el
/elpa/
/irony/
/projectile-bookmarks.eld
/transient/
\ No newline at end of file
This diff is collapsed.
Click to expand it.
init.el
+
11
−
4
View file @
c31f9e6b
;;; configuration --- Une configuration Emacs
;;; Commentary:
;;; configuration piochee sur le net
;;; Code:
(
setq
max-lisp-eval-depth
10000
)
(
setq
max-specpdl-size
10000
)
...
...
@@ -5,7 +9,8 @@
(
setq
package-enable-at-startup
nil
)
(
setq
is-standalone
nil
)
;; set is-standalone to true to use the local melpa archive
(
defvar
is-standalone
nil
)
(
if
is-standalone
(
setq
package-archives
'
((
"myelpa"
.
"~/.emacs.d/myelpa/"
)))
'
((
add-to-list
'package-archives
...
...
@@ -56,6 +61,8 @@
;; Your init file should contain only one such instance.
;; If there is more than one, they won't work right.
'
(
aw-leading-char-face
((
t
(
:inherit
ace-jump-face-foreground
:height
3.0
)))))
;; Local Variables:
;; byte-compile-warnings: (not free-vars)
;; End:
;;; Local Variables:
;;; byte-compile-warnings: (not free-vars)
;;; End: (provide 'init)
;;; init.el ends here
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