diff options
| author | Luke Hoersten <[email protected]> | 2010-11-03 22:22:06 -0500 |
|---|---|---|
| committer | Luke Hoersten <[email protected]> | 2010-11-03 22:22:06 -0500 |
| commit | 14bfb013b0f71855bff7fba3c725d7bbec217492 (patch) | |
| tree | c4ad8d7a6612d2f0d70b3ec8b4f27cb676a5aa45 /linux.el | |
| parent | 7f8810f96c186aea1be56253efb618a1ea5f6ddc (diff) | |
Added OS specific configs.
Diffstat (limited to 'linux.el')
| -rw-r--r-- | linux.el | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/linux.el b/linux.el new file mode 100644 index 0000000..ed8968d --- /dev/null +++ b/linux.el @@ -0,0 +1,14 @@ +;; ~/.emacs.d/linux.el +;; Luke Hoersten <[email protected]> + +(if window-system + (progn + (set-default-font "Monospace-10") + + ;; twilight theme + (require 'color-theme) + (load "color-theme-twilight") + (color-theme-twilight) + )) + +(provide 'linux)
\ No newline at end of file |
