Separating the UI setup
This commit is contained in:
parent
250e62d0c0
commit
f14028123c
2
init.el
2
init.el
@ -1,6 +1,6 @@
|
|||||||
(add-to-list 'load-path (expand-file-name "lisp" user-emacs-directory))
|
(add-to-list 'load-path (expand-file-name "lisp" user-emacs-directory))
|
||||||
(load-file (expand-file-name "setup-packages.el" (concat user-emacs-directory "lisp")))
|
(load-file (expand-file-name "setup-packages.el" (concat user-emacs-directory "lisp")))
|
||||||
|
(load-file (expand-file-name "setup-ui.el" (concat user-emacs-directory "lisp")))
|
||||||
|
|
||||||
(custom-set-variables
|
(custom-set-variables
|
||||||
;; custom-set-variables was added by Custom.
|
;; custom-set-variables was added by Custom.
|
||||||
|
4
lisp/setup-ui.el
Normal file
4
lisp/setup-ui.el
Normal file
@ -0,0 +1,4 @@
|
|||||||
|
(tab-bar-mode 1)
|
||||||
|
(setq tab-bar-show 1) ;; Show the tab bar only when more than one tab exists.
|
||||||
|
(global-display-line-numbers-mode t)
|
||||||
|
(add-hook 'treemacs-mode-hook (lambda () (display-line-numbers-mode 0))) ; Disable line numbers for Treemacs
|
Loading…
Reference in New Issue
Block a user