a bunch of qol improvements
This commit is contained in:
parent
0ef67e4f84
commit
56cbf0b3c1
2 changed files with 24 additions and 22 deletions
15
README.org
15
README.org
|
@ -265,7 +265,7 @@ Probably the prettiest and best modeline I've found.
|
|||
:ensure t
|
||||
:init
|
||||
(doom-modeline-mode 1)
|
||||
(setq doom-modeline-height 45
|
||||
(setq doom-modeline-height 30
|
||||
doom-modeline-bar-width 3
|
||||
all-the-icons-scale-factor 0.9
|
||||
doom-modeline-hud nil
|
||||
|
@ -501,6 +501,10 @@ This evil-collection package includes a lot of other evil based things.
|
|||
"wk" '(evil-window-up :which-key "up window")
|
||||
"wh" '(evil-window-left :which-key "left window")
|
||||
"wl" '(evil-window-right :which-key "right window")
|
||||
"wH" '(evil-window-move-far-left :which-key "right window")
|
||||
"wK" '(evil-window-move-very-top :which-key "right window")
|
||||
"wJ" '(evil-window-move-very-bottom :which-key "right window")
|
||||
"wL" '(evil-window-move-far-right :which-key "right window")
|
||||
";" '(execute-extended-command :which-key "execute command")
|
||||
":" '(eval-expression :which-key "evaluate expression"))
|
||||
(general-def 'minibuffer-local-map
|
||||
|
@ -1952,7 +1956,11 @@ Since I like to make my window manager handle a lot of the window management, I
|
|||
"Return non-nil if function SYM is autoloaded."
|
||||
(-when-let (file-name (buffer-file-name buf))
|
||||
(setq file-name (s-chop-suffix ".gz" file-name))
|
||||
(help-fns--autoloaded-p sym file-name)))
|
||||
(condition-case nil
|
||||
(help-fns--autoloaded-p sym file-name)
|
||||
; new in Emacs 29.0.50
|
||||
; see https://github.com/Wilfred/helpful/pull/283
|
||||
(error (help-fns--autoloaded-p sym)))))
|
||||
|
||||
(defun helpful--skip-advice (docstring)
|
||||
"Remove mentions of advice from DOCSTRING."
|
||||
|
@ -2832,7 +2840,7 @@ Let's add our own eshell prompt. and set the password cache to a significantly h
|
|||
(setenv "CHROME_EXECUTABLE" "/usr/bin/qutebrowser")
|
||||
(setenv "JAVA_HOME" "/usr/lib/jvm/default")
|
||||
|
||||
(add-hook 'eshell-mode-hook '(display-line-numbers-mode -1))
|
||||
(add-hook 'eshell-mode-hook (lambda () (display-line-numbers-mode -1)))
|
||||
|
||||
(setq eshell-command-aliases-list
|
||||
'(("q" "exit")
|
||||
|
@ -2842,6 +2850,7 @@ Let's add our own eshell prompt. and set the password cache to a significantly h
|
|||
("bd" "eshell-up $1")
|
||||
("rg" "rg --color=always $*")
|
||||
("ll" "ls -lah $*")
|
||||
("less" "view-file $1")
|
||||
("gg" "magit-status")
|
||||
("clear" "clear-scrollback")
|
||||
("!c" "eshell-previous-input 2")
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue