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
552209f0
Commit
552209f0
authored
Mar 4, 2020
by
Stéphane Del Pino
Browse files
Options
Downloads
Patches
Plain Diff
Quelques corrections (erreurs de syntaxe essentiellement)
parent
2d5781a4
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
init.el
+4
-3
4 additions, 3 deletions
init.el
myinit.org
+23
-19
23 additions, 19 deletions
myinit.org
with
27 additions
and
22 deletions
init.el
+
4
−
3
View file @
552209f0
...
...
@@ -23,6 +23,9 @@
:config
(
tabbar-mode
1
))
;; show the current function on top
(
which-function-mode
t
)
(
org-babel-load-file
(
expand-file-name
"~/.emacs.d/myinit.org"
))
(
custom-set-variables
;; custom-set-variables was added by Custom.
...
...
@@ -43,7 +46,7 @@
'
(
org-startup-indented
t
)
'
(
package-selected-packages
(
quote
(
cmake-font-lock
cmake-mode
magit-gerrit
rainbow-delimiters
alect-theme
zero-dark-theme
autumn-light-theme
solarized-dark-theme
misterioso
misterioso-theme
zenburn
sourcerer-theme
flycheck-pos-tip
flycheck-clojure
ox-reveal
posframe
processing-snippets
processing-mode
rg
deadgrep
flycheck-rust
cargo
racer
yasnippet-classic-snippets
rustic
lsp-rust
lsp-java
company-lsp
lsp-ui
lsp-mode
lsp
yasnippet-snippets
counsel-spotify
exec-path-from-shell
easy-kill
auto-yasnippet
org-pdfview
pdf-tools
atomic-chrome
mingus
simple-mpc
pcre2el
ag
wgrep-ag
wgrep
haskell-mode
aggressive-indent
treemacs-projectile
treemacs
prodigy
origami
dumb-jump
cider
ggtags
circe-notifications
circe
org-gcal
mu4e-alert
git-timemachine
git-gutter
magit
hydra
default-text-scale
smartparens
projectile
auctex
tern-auto-complete
tern
js2-refactor
ac-js2
js2-mode
emmet-mode
web-mode
iedit
expand-region
multiple-cursors
hungry-delete
beacon
undo-tree
virtualenvwrapper
elpy
flycheck
doom-modeline
doom-themes
tao-theme
poet-theme
faff-theme
zerodark-theme
alect-themes
moe-theme
base16-theme
zenburn-theme
color-theme-modern
company-jedi
irony-eldoc
company-irony
company
counsel
ace-window
htmlize
noflet
org-bullets
which-key
try
use-package
)))
(
alect-theme
zero-dark-theme
autumn-light-theme
solarized-dark-theme
misterioso
misterioso-theme
zenburn
sourcerer-theme
flycheck-pos-tip
flycheck-clojure
ox-reveal
posframe
processing-snippets
processing-mode
rg
deadgrep
flycheck-rust
cargo
racer
yasnippet-classic-snippets
rustic
lsp-rust
lsp-java
company-lsp
lsp-ui
lsp-mode
lsp
yasnippet-snippets
counsel-spotify
exec-path-from-shell
easy-kill
auto-yasnippet
org-pdfview
pdf-tools
atomic-chrome
mingus
simple-mpc
pcre2el
ag
wgrep-ag
wgrep
haskell-mode
aggressive-indent
treemacs-projectile
treemacs
prodigy
origami
dumb-jump
cider
ggtags
circe-notifications
circe
org-gcal
mu4e-alert
git-timemachine
git-gutter
magit
hydra
default-text-scale
smartparens
projectile
auctex
tern-auto-complete
tern
js2-refactor
ac-js2
js2-mode
emmet-mode
web-mode
iedit
expand-region
multiple-cursors
hungry-delete
beacon
undo-tree
virtualenvwrapper
elpy
flycheck
doom-modeline
doom-themes
tao-theme
poet-theme
faff-theme
zerodark-theme
alect-themes
moe-theme
base16-theme
zenburn-theme
color-theme-modern
company-jedi
irony-eldoc
company-irony
company
counsel
ace-window
htmlize
noflet
org-bullets
which-key
try
use-package
)))
'
(
sp-escape-quotes-after-insert
nil
))
(
setq
max-lisp-eval-depth
10000
)
(
setq
max-specpdl-size
10000
)
...
...
@@ -63,8 +66,6 @@
(
package-refresh-contents
)
(
package-install
'use-package
))
(
org-babel-load-file
(
expand-file-name
"~/.emacs.d/myinit.org"
))
(
custom-set-faces
...
...
This diff is collapsed.
Click to expand it.
myinit.org
+
23
−
19
View file @
552209f0
...
...
@@ -30,6 +30,7 @@
(turn-on-auto-fill)
;; Disable auto-fill-mode in programming mode
(add-hook 'prog-mode-hook (lambda () (auto-fill-mode -1)))
#+END_SRC
* try
#+BEGIN_SRC emacs-lisp
...
...
@@ -329,8 +330,6 @@
:config
(load-theme 'sourcerer t))
;; More visible line
(set-face-background 'hl-line "#372E2D")
;; Increase font size
(defvar my-font-size 140)
...
...
@@ -358,7 +357,7 @@
(add-hook 'prog-mode-hook #'rainbow-delimiters-mode))
#+END_SRC
* Auto pairs
*
COMMENT
Auto pairs
#+BEGIN_SRC emacs-lisp
(use-package autopair
:ensure t
...
...
@@ -446,6 +445,8 @@
#+BEGIN_SRC emacs-lisp
; Highlights the current cursor line
(global-hl-line-mode t)
;; More visible line
(set-face-background 'hl-line "#372E2D")
; flashes the cursor's line when you scroll
(use-package beacon
...
...
@@ -455,11 +456,11 @@
; (setq beacon-color "#666600")
)
;;
;
deletes all the whitespace when you hit backspace or delete
;;
(use-package hungry-delete
;;
:ensure t
;;
:config
;;
(global-hungry-delete-mode))
;; deletes all the whitespace when you hit backspace or delete
(use-package hungry-delete
:ensure t
:config
(global-hungry-delete-mode))
(use-package multiple-cursors
...
...
@@ -1014,7 +1015,7 @@
#+RESULTS:
: mz/make-and-run-elfeed-hydra
*
c
++
*
C
++
#+BEGIN_SRC emacs-lisp
(use-package ggtags
...
...
@@ -1030,7 +1031,7 @@
#+RESULTS:
*
c
make
*
C
make
#+BEGIN_SRC emacs-lisp
(use-package cmake-mode
:ensure t
...
...
@@ -1409,6 +1410,9 @@
(setq auto-window-vscroll nil)
(blink-cursor-mode t)
(setq default-frame-alist
'((cursor-color . "DarkGrey")))
#+END_SRC
* Keyfreq
...
...
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
sign in
to comment