;; 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) (when window-system ;;hide tool-bar (tool-bar-mode 0) ;;hide scroll-bar (scroll-bar-mode 0) ;;hide menu-bar (menu-bar-mode +1) ;; set the font size and family (custom-set-faces '(default ((t (:height 130 :family "Droid Sans Mono")))))) (require 'whitespace) (global-whitespace-mode 1) (setq whitespace-style '(face trailing tabs tab-mark)) ;; smart mode-line (use-package smart-mode-line :ensure t :init (progn (setq sml/no-confirm-load-theme t) (setq sml/theme nil) (setq sml/name-width 30) (setq sml/shorten-directory t) (setq sml/shorten-modes t) (setq sml/mode-width 'full) (sml/setup) (add-to-list 'sml/hidden-modes " WS")))