Edit emacs config for better terminal support

This commit is contained in:
2025-06-13 12:15:34 -04:00
parent 51f0e96488
commit 963e2b1294
2 changed files with 6 additions and 5 deletions

View File

@@ -49,10 +49,11 @@
;; prevent resizing of the frame
(setq frame-inhibit-implied-resize t)
;; no bars
;; no bars when graphical
(when (display-graphic-p)
(menu-bar-mode -1)
(tool-bar-mode -1)
(scroll-bar-mode -1)
(scroll-bar-mode -1))
;; no startup screen
(setq inhibit-startup-screen t)

View File

@@ -57,7 +57,7 @@
(setq use-package-always-demand t
use-package-compute-statistics t)
(require 'bind-key)
(use-package bind-key)
(use-package diminish)