diff options
author | noa | 2025-02-17 02:26:52 +0800 |
---|---|---|
committer | noa | 2025-02-17 02:26:52 +0800 |
commit | e92ed12cf723fac588e1d3f7c3d51930d9444745 (patch) | |
tree | 0b8723eda1b06845398ea77524ad9d4f812d7338 /emacs | |
parent | 25931fea71dddde14b45b1b4faa8ff1ff1c30529 (diff) |
Improvements for terminal emacs
Diffstat (limited to 'emacs')
-rw-r--r-- | emacs/init.el | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/emacs/init.el b/emacs/init.el index f37a550..dbee00c 100644 --- a/emacs/init.el +++ b/emacs/init.el @@ -949,4 +949,11 @@ With prefix argument TIME, also add the current time." (proced-enable-color-flag nil) (proced-show-remote-processes t)) +;; Nicer terminal emacs +(set-display-table-slot standard-display-table 'vertical-border (make-glyph-code ?│)) +(setq mode-line-end-spaces nil) + +(use-package xclip) +(unless (display-graphic-p) (xclip-mode 1)) + ;; (profiler-stop) |