mirror of
https://github.com/fscotto/infra.git
synced 2026-05-30 15:39:58 +00:00
Configure flyspell with manual activation and ispell timeout
This commit is contained in:
@@ -8,7 +8,7 @@
|
||||
*** [[https://lewboski.dev/rss.xml][Lewboski Blog]] :linux: :kernel:
|
||||
** FOSS News :news:
|
||||
*** [[https://lwn.net/headlines/rss][LWN News]] :linux: :kernel: :programming: :security:
|
||||
*** [[https://voidlinux.org/atom.xml][Void News] :linux: :voidlinux:
|
||||
*** [[https://voidlinux.org/atom.xml][Void News]] :linux: :voidlinux:
|
||||
*** [[https://github.com/void-linux/void-packages/commits/master.atom][Void Packages]] :linux: :voidlinux:
|
||||
** Youtube :youtube:
|
||||
*** [[https://www.youtube.com/feeds/videos.xml?channel_id=UCVls1GmFKf6WlTraIb_IaJg][DistroTube]] :emacs: :foss: :linux:
|
||||
|
||||
@@ -18,6 +18,7 @@
|
||||
'tools/completion
|
||||
'tools/dired
|
||||
'tools/project
|
||||
'tools/spell
|
||||
'tools/lsp
|
||||
'tools/dap
|
||||
'tools/treesitter
|
||||
|
||||
@@ -4,6 +4,7 @@
|
||||
|
||||
(global-set-key (kbd "C-x C-b") #'ibuffer)
|
||||
(global-set-key (kbd "C-<return>") 'company-complete)
|
||||
(global-set-key (kbd "M-n f") #'flyspell-buffer)
|
||||
|
||||
(defvar fscotto/leader-map (make-sparse-keymap)
|
||||
"Keymap per comandi sotto C-c.")
|
||||
|
||||
@@ -12,8 +12,7 @@
|
||||
org-startup-folded 'content
|
||||
org-todo-keywords '((sequence "🆕(t)" "▶️(s)" "⏳(w)" "🔎(p)" "|" "✅(d)" "🗑(c)" "👨(g)")))
|
||||
:config
|
||||
(add-hook 'org-mode-hook 'org-indent-mode)
|
||||
(add-hook 'org-mode-hook 'flyspell-mode))
|
||||
(add-hook 'org-mode-hook 'org-indent-mode))
|
||||
|
||||
(use-package org-bullets
|
||||
:ensure t
|
||||
|
||||
10
dotfiles/desktop/.emacs.d/lisp/tools/spell.el
Normal file
10
dotfiles/desktop/.emacs.d/lisp/tools/spell.el
Normal file
@@ -0,0 +1,10 @@
|
||||
;;; spell.el -*- lexical-binding: t; -*-
|
||||
|
||||
(setq ispell-really-hunspell t
|
||||
ispell-silently-savep t
|
||||
ispell-ignore-sentence-boundary t
|
||||
ispell-process-timeout 10)
|
||||
|
||||
(provide 'tools/spell)
|
||||
|
||||
;;; spell.el ends here
|
||||
Reference in New Issue
Block a user