Minor tweaks ... starting on repeating commands
This commit is contained in:
parent
fa1545b088
commit
61cd127fe3
2 changed files with 13 additions and 7 deletions
|
@ -177,7 +177,8 @@ Let's turn off the menu and other settings:
|
||||||
(tool-bar-mode -1)
|
(tool-bar-mode -1)
|
||||||
(scroll-bar-mode -1)
|
(scroll-bar-mode -1)
|
||||||
(horizontal-scroll-bar-mode -1)
|
(horizontal-scroll-bar-mode -1)
|
||||||
(setq visible-bell 1))
|
(setq visible-bell 1
|
||||||
|
frame-inhibit-implied-resize t))
|
||||||
#+end_src
|
#+end_src
|
||||||
|
|
||||||
I like being able to enable local variables in =.dir-local.el= files:
|
I like being able to enable local variables in =.dir-local.el= files:
|
||||||
|
@ -369,6 +370,8 @@ Can we change Evil at this point? Some tips:
|
||||||
(use-package evil
|
(use-package evil
|
||||||
:init
|
:init
|
||||||
(setq evil-undo-system 'undo-fu
|
(setq evil-undo-system 'undo-fu
|
||||||
|
evil-auto-indent t
|
||||||
|
evil-respect-visual-line-mode t
|
||||||
evil-want-fine-undo t ; Be more like Emacs
|
evil-want-fine-undo t ; Be more like Emacs
|
||||||
evil-disable-insert-state-bindings t
|
evil-disable-insert-state-bindings t
|
||||||
evil-want-keybinding nil
|
evil-want-keybinding nil
|
||||||
|
@ -859,8 +862,8 @@ Let's try this out with a Hydra since some I can /repeat/ some commands (e.g. en
|
||||||
_l_: right _v_: v-split _o_: only this window _c_: choose (also 1-9)
|
_l_: right _v_: v-split _o_: only this window _c_: choose (also 1-9)
|
||||||
"
|
"
|
||||||
("w" ace-window)
|
("w" ace-window)
|
||||||
("c" other-window) ; change window
|
("c" other-window :color pink) ; change window
|
||||||
("o" delete-other-windows) ; Only this window
|
("o" delete-other-windows) ; Only this window
|
||||||
("x" delete-window)
|
("x" delete-window)
|
||||||
("D" ace-delete-window)
|
("D" ace-delete-window)
|
||||||
|
|
||||||
|
@ -872,10 +875,10 @@ Let's try this out with a Hydra since some I can /repeat/ some commands (e.g. en
|
||||||
("R" winner-redo :color pink)
|
("R" winner-redo :color pink)
|
||||||
|
|
||||||
("n" evil-window-new)
|
("n" evil-window-new)
|
||||||
("j" evil-window-up)
|
("j" evil-window-up :color pink)
|
||||||
("k" evil-window-down)
|
("k" evil-window-down :color pink)
|
||||||
("h" evil-window-left)
|
("h" evil-window-left :color pink)
|
||||||
("l" evil-window-right)
|
("l" evil-window-right :color pink)
|
||||||
|
|
||||||
("b" evil-window-split) ; For below
|
("b" evil-window-split) ; For below
|
||||||
("v" evil-window-vsplit)
|
("v" evil-window-vsplit)
|
||||||
|
|
|
@ -39,6 +39,9 @@ While I would like to share the /status/ of my reads, so ...
|
||||||
:init
|
:init
|
||||||
(setq elfeed-db-directory "~/dropbox/.elfeed/")
|
(setq elfeed-db-directory "~/dropbox/.elfeed/")
|
||||||
|
|
||||||
|
;; While not an elfeed-specific variable, this make reading articles
|
||||||
|
;; with images easier:
|
||||||
|
(setq pixel-scroll-precision-mode t)
|
||||||
:general
|
:general
|
||||||
(:states 'normal :keymaps 'elfeed-show-mode-map
|
(:states 'normal :keymaps 'elfeed-show-mode-map
|
||||||
"b" 'elfeed-show-visit
|
"b" 'elfeed-show-visit
|
||||||
|
|
Loading…
Reference in a new issue