2025-10-21 08:38:46 +07:00
|
|
|
;; -*- lexical-binding: t; -*-
|
2025-01-30 10:47:07 +07:00
|
|
|
(setq tab-bar-show 1) ;; Show the tab bar only when more than one tab exists.
|
|
|
|
|
|
|
|
|
|
(global-display-line-numbers-mode t) ;; Display line numbers
|
|
|
|
|
(add-hook 'treemacs-mode-hook (lambda () (display-line-numbers-mode 0))) ;; Disable line numbers for Treemacs
|
|
|
|
|
|
|
|
|
|
(add-to-list 'custom-theme-load-path "~/.emacs.d/themes/") ;; Custom themes that I download from internet
|
|
|
|
|
(load-theme 'dracula t)
|
|
|
|
|
(add-to-list 'default-frame-alist '(background-color . "unspecified-bg")) ;; The background will follow the terminal background
|