Fixed cursor, fixed iedit. Added i3-getip and led.sh.
Turned off scroll-conservatively because it made the cursor jump erratically. Hooked into flyspell-prog-mode to delete C-; keybinding.
This commit is contained in:
parent
ebc82103d8
commit
64e8cf8c8b
13
init.el
13
init.el
|
@ -1,5 +1,5 @@
|
||||||
;;; init.el --- tastytea's Emacs init file.
|
;;; init.el --- tastytea's Emacs init file.
|
||||||
;;; Time-stamp: <2019-03-23 06:17:57 CET>
|
;;; Time-stamp: <2019-03-23 08:44:55 CET>
|
||||||
|
|
||||||
;;; Commentary:
|
;;; Commentary:
|
||||||
;;; I am using this file with Emacs 26, but most of it will probably work with
|
;;; I am using this file with Emacs 26, but most of it will probably work with
|
||||||
|
@ -122,8 +122,8 @@
|
||||||
|
|
||||||
;; Scroll 1 line at a time.
|
;; Scroll 1 line at a time.
|
||||||
(setq mouse-wheel-scroll-amount '(1 ((shift) . 1)))
|
(setq mouse-wheel-scroll-amount '(1 ((shift) . 1)))
|
||||||
;; Never recenter cursor while scrolling.
|
;; ;; Never recenter cursor while scrolling.
|
||||||
(setq scroll-conservatively 101)
|
;; (setq scroll-conservatively 101)
|
||||||
|
|
||||||
;; Scroll before cursor has reached top/bottom.
|
;; Scroll before cursor has reached top/bottom.
|
||||||
;; Way too slow with fci-mode and highlight-indent-guides activated.
|
;; Way too slow with fci-mode and highlight-indent-guides activated.
|
||||||
|
@ -498,6 +498,10 @@
|
||||||
(executable-find "ispell"))
|
(executable-find "ispell"))
|
||||||
(unless slow-computer
|
(unless slow-computer
|
||||||
(use-package flyspell
|
(use-package flyspell
|
||||||
|
:init
|
||||||
|
(defun my/delete-flyspell-keybinding ()
|
||||||
|
"Delete \"C-;\" keybinding because iedit needs it."
|
||||||
|
(define-key flyspell-mode-map (kbd "C-;") nil))
|
||||||
:custom
|
:custom
|
||||||
(ispell-dictionary "english")
|
(ispell-dictionary "english")
|
||||||
:config
|
:config
|
||||||
|
@ -512,7 +516,8 @@
|
||||||
("<f6>" . my/toggle-flyspell)
|
("<f6>" . my/toggle-flyspell)
|
||||||
:hook
|
:hook
|
||||||
;; Spellcheck comments.
|
;; Spellcheck comments.
|
||||||
(prog-mode . flyspell-prog-mode))))
|
(prog-mode . flyspell-prog-mode)
|
||||||
|
(flyspell-prog-mode . my/delete-flyspell-keybinding))))
|
||||||
|
|
||||||
;; Multiple cursors.
|
;; Multiple cursors.
|
||||||
(use-package multiple-cursors
|
(use-package multiple-cursors
|
||||||
|
|
|
@ -1,2 +1,2 @@
|
||||||
127.0.0.1:51313 27000
|
127.0.0.1:51313 16158
|
||||||
phahw2ohVoh0oopheish7IVie9desh8aequeenei3uo8wahShe%thuadaeNa4ieh
|
phahw2ohVoh0oopheish7IVie9desh8aequeenei3uo8wahShe%thuadaeNa4ieh
|
Loading…
Reference in New Issue
Block a user