summaryrefslogtreecommitdiffstats
path: root/.emacs
blob: 88c2afdc60b41441f6c6f733ccd04bd49c63507f (plain)
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
38
39
40
41
42
43
44
45
46
47
48
49
50
51
(load-file "~/.emacs.d/include.el")

(if (eq system-type 'gnu/linux) ; if we're running linux
    (load-file "~/.emacs.d/linux/.emacs"))

(setq inhibit-startup-message t)    ; don't show welcome
(setq-default indent-tabs-mode nil) ; spaces, no tabs
(tool-bar-mode nil)                 ; no toolbar
(menu-bar-mode nil)                 ; no menu
(line-number-mode nil)              ; don't show line numbers in splitter
(global-linum-mode t)               ; show line numbers in gutter
(column-number-mode t)              ; show column numbers in splitter
(color-theme-weirdness)             ; my theme
(global-font-lock-mode t)           ; always show syntax higlighting, this may
                                        ; be old
(fset 'yes-or-no-p 'y-or-n-p)       ; don't want to have to type yes or no

;; Autopair Mode
(autopair-global-mode)

;; Vala Mode
(add-to-list 'auto-mode-alist '("\\.vala$" . vala-mode))
(add-to-list 'auto-mode-alist '("\\.vapi$" . vala-mode))
(add-to-list 'file-coding-system-alist '("\\.vala$" . utf-8))
(add-to-list 'file-coding-system-alist '("\\.vapi$" . utf-8))

;; C# Mode
(setq auto-mode-alist (cons `("\\.cs\\'" . csharp-mode) auto-mode-alist))

;; Autosave location
(setq backup-directory-alist
      `((".*" . ,temporary-file-directory)))
(setq auto-save-file-name-transforms
      `((".*" ,temporary-file-directory t)))

;; Autocomplete
(add-to-list 'ac-dictionary-directories "~/.emacs.d//ac-dict")
(ac-config-default)

(custom-set-variables
  ;; custom-set-variables was added by Custom.
  ;; If you edit it by hand, you could mess it up, so be careful.
  ;; Your init file should contain only one such instance.
  ;; If there is more than one, they won't work right.
 )
(custom-set-faces
  ;; custom-set-faces was added by Custom.
  ;; If you edit it by hand, you could mess it up, so be careful.
  ;; Your init file should contain only one such instance.
  ;; If there is more than one, they won't work right.
 )