blob: ba11e7e552d7a259126414cd087be00090ebd2cc (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
|
;; 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))
|