;; no menu (menu-bar-mode -1) ;; show parenthesis (show-paren-mode +1) ;; enable colors (global-font-lock-mode +1) ;; no startup screen (setq inhibit-startup-message t) (setq frame-title-format '(buffer-file-name "%f" ("%b"))) ;; show the column number in the mode-line (setq column-number-mode t) ;; (set-fringe-mode 1) (use-package diminish :ensure t :config (progn (eval-after-load "whitespace" '(diminish 'whitespace-mode)))) ;; display the name of the function (use-package which-func :init (which-function-mode 1))