Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
emacs.d
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Deploy
Releases
Container registry
Model registry
Monitor
Incidents
Analyze
Value stream analytics
Contributor 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
BAZIN Jean-Noel
emacs.d
Commits
b4c68c05
Commit
b4c68c05
authored
5 months ago
by
BAZIN Jean-Noel
Browse files
Options
Downloads
Patches
Plain Diff
add csv and toggle english/french flyspell functions
parent
1c4184df
Branches
Branches containing commit
Tags
Tags containing commit
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
emacs-config.org
+18
-0
18 additions, 0 deletions
emacs-config.org
with
18 additions
and
0 deletions
emacs-config.org
+
18
−
0
View file @
b4c68c05
...
@@ -494,6 +494,18 @@ source : [[ https://github.com/magnars/expand-region.el][https://github.com/magn
...
@@ -494,6 +494,18 @@ source : [[ https://github.com/magnars/expand-region.el][https://github.com/magn
((text-mode outline-mode) . flyspell-mode)
((text-mode outline-mode) . flyspell-mode)
;; yaml-mode étant dérivé de text-mode, il faut désactiver explicitement flyspell
;; yaml-mode étant dérivé de text-mode, il faut désactiver explicitement flyspell
(yaml-mode . flyspell-mode-off))
(yaml-mode . flyspell-mode-off))
(defun flyspell-english ()
(interactive)
(ispell-change-dictionary "english")
(flyspell-buffer))
(defun flyspell-french ()
(interactive)
(ispell-change-dictionary "french")
(flyspell-buffer))
#+end_src
#+end_src
- Affichage des corrections possibles en utilisant ivy
- Affichage des corrections possibles en utilisant ivy
...
@@ -1288,3 +1300,9 @@ Ediff s'exécute par défaut dans une nouvelle frame. La configuration proposée
...
@@ -1288,3 +1300,9 @@ Ediff s'exécute par défaut dans une nouvelle frame. La configuration proposée
:config
:config
(global-highlight-thing-mode))
(global-highlight-thing-mode))
#+end_src
#+end_src
* Setting up CSV-mode
#+begin_src emacs-lisp :tangle yes
(use-package csv-mode)
#+end_src
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