mirror of
https://github.com/Ascyii/emacs.git
synced 2026-01-01 06:04:24 -05:00
14 lines
278 B
EmacsLisp
14 lines
278 B
EmacsLisp
;; Set all common options here
|
|
|
|
(setq inhibit-startup-message t)
|
|
(scroll-bar-mode -1)
|
|
|
|
;; Disable just the white menu bar
|
|
(menu-bar-mode -1)
|
|
|
|
;; Show line numbers in all buffers
|
|
(global-display-line-numbers-mode t)
|
|
(setq display-line-numbers-type 'relative)
|
|
|
|
(provide 'options)
|