diff options
author | Kjetil Orbekk <kj@orbekk.com> | 2023-01-02 11:08:13 -0500 |
---|---|---|
committer | Kjetil Orbekk <kj@orbekk.com> | 2023-02-04 13:52:53 -0500 |
commit | 708b47b62ddcb6b205b69b388974c620b5dd730b (patch) | |
tree | e47c0896b2f454712d7f55f0f65bb912985a75a2 | |
parent | 8730f4dda0363c4d418393b3a105309d60d4fbed (diff) |
Update dotfiles
-rw-r--r-- | emacs/.config/emacs-kj/init.el | 1 | ||||
-rwxr-xr-x | setup.sh | 2 |
2 files changed, 2 insertions, 1 deletions
diff --git a/emacs/.config/emacs-kj/init.el b/emacs/.config/emacs-kj/init.el index 37822f5..c84cb15 100644 --- a/emacs/.config/emacs-kj/init.el +++ b/emacs/.config/emacs-kj/init.el @@ -649,6 +649,7 @@ (setq which-key-idle-delay .5) ;; Allow longer output in compilation buffer. +(add-to-list 'compilation-filter-hook #'comint-truncate-buffer) (setq comint-buffer-maximum-size 10000) ;; Replace values in an alist from a list of replacements. @@ -1,7 +1,7 @@ #!/usr/bin/env bash set -euo pipefail -STOW="stow --no-folding" +STOW="stow" cd "$(dirname $0)" git submodule update --init --recursive --depth 1 |