1
2
3
4
5
6
7
8
9
10
11
12
13
14
| (provide 'setup-environment)
|
| (setq inhibit-startup-screen t)
|
| (setq savehist-additional-variables '(search ring regexp-search-ring) ; also save your regexp search queries
| savehist-autosave-interval 60 ; save every minute
| )
|
| (winner-mode 1)
|
| (column-number-mode 1)
|
| (add-to-list 'custom-theme-load-path "~/.emacs.d/themes/")
| (load-theme 'zenburn t)
|
|