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)
|
||||
(scroll-bar-mode -1)
|
||||
(horizontal-scroll-bar-mode -1)
|
||||
(setq visible-bell 1))
|
||||
(setq visible-bell 1
|
||||
frame-inhibit-implied-resize t))
|
||||
#+end_src
|
||||
|
||||
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
|
||||
:init
|
||||
(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-disable-insert-state-bindings t
|
||||
evil-want-keybinding nil
|
||||
|
@ -859,7 +862,7 @@ 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)
|
||||
"
|
||||
("w" ace-window)
|
||||
("c" other-window) ; change window
|
||||
("c" other-window :color pink) ; change window
|
||||
("o" delete-other-windows) ; Only this window
|
||||
("x" 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)
|
||||
|
||||
("n" evil-window-new)
|
||||
("j" evil-window-up)
|
||||
("k" evil-window-down)
|
||||
("h" evil-window-left)
|
||||
("l" evil-window-right)
|
||||
("j" evil-window-up :color pink)
|
||||
("k" evil-window-down :color pink)
|
||||
("h" evil-window-left :color pink)
|
||||
("l" evil-window-right :color pink)
|
||||
|
||||
("b" evil-window-split) ; For below
|
||||
("v" evil-window-vsplit)
|
||||
|
|
|
@ -39,6 +39,9 @@ While I would like to share the /status/ of my reads, so ...
|
|||
:init
|
||||
(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
|
||||
(:states 'normal :keymaps 'elfeed-show-mode-map
|
||||
"b" 'elfeed-show-visit
|
||||
|
|
Loading…
Reference in a new issue