emacs: more tweaks
Tony Olagbaiye
a month ago
0 | 0 |
(setq explicit-shell-file-name (executable-find "bash"))
|
1 | 1 |
(setq shell-file-name (executable-find "bash"))
|
|
2 |
(setq async-shell-command-buffer 'confirm-rename-buffer)
|
|
3 |
(setq async-shell-command-display-buffer nil)
|
2 | 4 |
(do-buffers (setenv "PAGER" "cat"))
|
3 | 5 |
|
4 | 6 |
(defun shell-region (start end)
|
25 | 25 |
weechat-sync-buffer-read-status t)
|
26 | 26 |
;(setq weechat-auto-monitor-buffers '("weechat" "relay.list" "fset" "exec.0"))
|
27 | 27 |
(setq weechat-color-list '(unspecified "aquamarine4" "PaleGreen3" "LemonChiffon4" "burlywood" "LightGoldenrod2" "tan2" "LightSalmon2" "coral2" "IndianRed3" "IndianRed" "MediumPurple3" "PaleVioletRed2" "HotPink3" "CadetBlue" "SteelBlue3" "DarkSeaGreen"))
|
|
28 |
(set-face-foreground 'weechat-time-face "dark gray")
|
|
29 |
(set-face-attribute 'weechat-prompt-face :weight extra-bold)
|
28 | 30 |
(dolist (module weechat-modules nil)
|
29 | 31 |
(require module))
|
30 | 32 |
(dolist (buffer (buffer-list) nil)
|
188 | 188 |
(setq-default indent-tabs-mode nil)
|
189 | 189 |
(setq view-read-only t)
|
190 | 190 |
(setq compilation-scroll-output t)
|
|
191 |
(setq max-mini-window-height 0.5)
|
191 | 192 |
(when (fboundp 'windmove-default-keybindings)
|
192 | 193 |
(windmove-default-keybindings))
|
193 | 194 |
(when (fboundp 'winner-mode)
|