diff options
-rw-r--r-- | blendoit/init-blendoit.org | 11 | ||||
-rw-r--r-- | init-custom.el (renamed from blendoit/custom/custom-file.el) | 5 |
2 files changed, 9 insertions, 7 deletions
diff --git a/blendoit/init-blendoit.org b/blendoit/init-blendoit.org index 67c33d6..9d00fa0 100644 --- a/blendoit/init-blendoit.org +++ b/blendoit/init-blendoit.org @@ -47,8 +47,8 @@ customize-group <package>. #+NAME: custom-file #+BEGIN_SRC emacs-lisp -(setq custom-file "~/.emacs.d/blendoit/custom/custom-file.el") -(load custom-file) + (setq custom-file "~/.emacs.d/init-custom.el") + (load custom-file) #+END_SRC ** Customization shortcuts @@ -508,6 +508,13 @@ These customizations enhance editor usability. (defalias 'yes-or-no-p 'y-or-n-p) #+END_SRC +This is just a better default. + +#+BEGIN_SRC emacs-lisp +(setq c-default-style "linux" + c-basic-offset 4) +#+END_SRC + ** Initial & subsequent frame size # #+BEGIN_SRC emacs-lisp diff --git a/blendoit/custom/custom-file.el b/init-custom.el index 8c2039e..0011f89 100644 --- a/blendoit/custom/custom-file.el +++ b/init-custom.el @@ -5,11 +5,6 @@ ;; If there is more than one, they won't work right. '(ansi-color-names-vector ["#3F3F3F" "#CC9393" "#7F9F7F" "#F0DFAF" "#8CD0D3" "#DC8CC3" "#93E0E3" "#DCDCCC"]) - '(c-default-style - (quote - ((java-mode . "java") - (awk-mode . "awk") - (other . "linux")))) '(company-quickhelp-color-background "#4F4F4F") '(company-quickhelp-color-foreground "#DCDCCC") '(cua-mode t nil (cua-base)) |