diff options
author | Aryadev Chavali <aryadev@aryadevchavali.com> | 2024-10-05 15:40:32 +0100 |
---|---|---|
committer | Aryadev Chavali <aryadev@aryadevchavali.com> | 2024-10-05 15:40:32 +0100 |
commit | 51dfc2f7ace39b590fc6144e0a52e801ccda12b7 (patch) | |
tree | a6e9b703572d762062a36bdaef32187657b6debd /Emacs/.config/emacs | |
parent | e868c73465e7cc7ff706510d35379d30e14b5515 (diff) | |
download | dotfiles-51dfc2f7ace39b590fc6144e0a52e801ccda12b7.tar.gz dotfiles-51dfc2f7ace39b590fc6144e0a52e801ccda12b7.tar.bz2 dotfiles-51dfc2f7ace39b590fc6144e0a52e801ccda12b7.zip |
Added scratchpad configuration
Diffstat (limited to 'Emacs/.config/emacs')
-rw-r--r-- | Emacs/.config/emacs/config.org | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/Emacs/.config/emacs/config.org b/Emacs/.config/emacs/config.org index 5778198..dd4dd3a 100644 --- a/Emacs/.config/emacs/config.org +++ b/Emacs/.config/emacs/config.org @@ -241,6 +241,17 @@ never used before, 3 seems to be a reasonable default. ((or "ravenmaiden" "oldboy") 6) (_ 3)))) #+end_src +** Setting up a scratchpad +In [[https://git.aryadevchavali.com/dwm.git][DWM]], I have a +scratchpad patch applied which allows the construction and usage of a +floating application, usually a terminal. I've set this to use Emacs +instead, evaluating ~(+scratcpad-setup)~. This function, defined +here, just sets up any specific configuration I want for this +scratchpad instance. +#+begin_src emacs-lisp +(defun +scratchpad-setup() + (eshell)) +#+end_src * Aesthetics General look and feel of Emacs (mostly disabling stuff I don't like). ** Themes |