adding window resize keybinds

This commit is contained in:
Chris Cochrun 2022-03-11 10:27:15 -06:00
parent 01bffe0db5
commit e562febb34
2 changed files with 37 additions and 8 deletions

28
init.el
View file

@ -192,7 +192,8 @@
hscroll-margin 2
scroll-margin 0
scroll-preserve-screen-position t
hscroll-step 1)
hscroll-step 1
evil-vsplit-window-right t)
:config
(evil-mode +1))
@ -238,6 +239,7 @@
"hF" '(describe-face :which-key "describe-face")
"hb" '(general-describe-keybindings :which-key "describe-bindings")
"hi" '(info :which-key "info manual")
"ht" '(which-key-show-top-level :which-key "show top-level keybindings")
"ss" '(consult-line :which-key "consult search")
"sr" '(consult-ripgrep :which-key "consult ripgrep")
"wo" '(other-window :which-key "other window")
@ -254,7 +256,9 @@
"C-v" 'evil-paste-after)
(general-def 'normal
"gcc" 'comment-line
"K" 'helpful-at-point)
"K" 'helpful-at-point
"C-S-l" 'evil-window-increase-width
"C-S-h" 'evil-window-decrease-width)
(general-def 'normal Info-mode-map
"RET" 'Info-follow-nearest-node
"p" 'Info-prev
@ -611,7 +615,8 @@ targets."
"op" 'projectile-switch-open-project
"gc" 'projectile-compile-project
"gr" 'projectile-run-project
"fp" 'project-find-file))
"fp" 'project-find-file
"fP" 'project-switch-project))
(use-package simple-httpd
:ensure t)
@ -1943,6 +1948,7 @@ interfere with the default `bongo-playlist-buffer'."
"q" 'bury-buffer
"RET" 'ement-room-send-message
"r" 'ement-room-send-reply
"gr" 'ement-room-sync
"R" 'ement-room-send-reaction)
(chris/leader-keys
"oM" 'ement-list-rooms))
@ -1987,3 +1993,19 @@ interfere with the default `bongo-playlist-buffer'."
gcmh-verbose nil))
(setq warning-suppress-types '((comp)))
(custom-set-variables
;; custom-set-variables was added by Custom.
;; If you edit it by hand, you could mess it up, so be careful.
;; Your init file should contain only one such instance.
;; If there is more than one, they won't work right.
'(pdf-misc-print-program "/usr/bin/lpr" t)
'(pdf-misc-print-program-args '("-o media=Letter" "-o fitplot") t)
'(safe-local-variable-values
'((projectile-project-run-cmd . "./build/bin/presenter")
(projectile-project-compilation-cmd . "cmake -DCMAKE_EXPORT_COMPILE_COMMANDS=1 -B build/ . && make --dir build/"))))
(custom-set-faces
;; custom-set-faces was added by Custom.
;; If you edit it by hand, you could mess it up, so be careful.
;; Your init file should contain only one such instance.
;; If there is more than one, they won't work right.
)