-
Notifications
You must be signed in to change notification settings - Fork 0
/
micro.el
37 lines (28 loc) · 971 Bytes
/
micro.el
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
29
30
31
32
33
34
35
36
37
;; Load path settings
(setq emacs-dir "~/src/mine/emacs.d")
(add-to-list 'load-path emacs-dir)
(require 'here-env)
;; Basic environment ----------------------------------------------------------
(require 'functions)
(require 'base)
(if (eq system-type 'darwin) (osx-support) )
(require 'visual)
(require 'my-package-conf)
(require 'my-python)
;; Host specific stuff - should always have the last word ---------------------
(setq yas-snippet-dirs
'("~/src/mine/emacs.d/snippet" ;; personal snippets
))
(require 'warnings)
(add-to-list 'warning-suppress-types '(yasnippet backquote-change))
;; linum ----------------------------------------------------------------------
;; Line numbers to the left
(require 'linum)
(global-linum-mode t)
(setq linum-format "%d ")
(custom-set-faces
'(linum ((t
(:inherit (shadow default)
:foreground "dark orange"
:background "black"
))) ))