This repository has been archived on 2022-11-18. You can view files and clone it, but cannot push or open issues or pull requests.
emacs/init.el

145 lines
5.6 KiB
EmacsLisp
Raw Normal View History

2017-08-17 21:37:33 +02:00
;;; init.el --- Emacs Initialization File
;;
;; Copyright (c) 2017-2019 Wojciech Kozlowski
2017-08-17 21:37:33 +02:00
;;
2018-02-04 18:18:18 +01:00
;; Author: Wojciech Kozlowski <wk@wojciechkozlowski.eu>
;; Created: 2017-08-17
2017-08-17 21:37:33 +02:00
;;
;;; License: GPLv3
2017-08-17 21:38:30 +02:00
2018-07-07 22:34:00 +02:00
;;; Commentary:
;;; Code:
2017-08-17 21:38:30 +02:00
;; ----------------------------------------------------------------------------
;; Run init without garbage collection.
;; ----------------------------------------------------------------------------
(let ((gc-cons-threshold most-positive-fixnum))
2018-02-11 23:34:08 +01:00
;; --------------------------------------------------------------------------
;; Initialise and setup `package'.
;; --------------------------------------------------------------------------
(require 'package)
(add-to-list 'package-archives
'("melpa" . "https://melpa.org/packages/") t)
2018-02-11 23:34:08 +01:00
(package-initialize)
;; Local copies of packages no longer provided by MELPA. See
;; https://github.com/melpa/melpa/pull/5008.
(add-to-list 'load-path "~/.emacs.d/emacswiki/")
2018-11-06 02:14:48 +01:00
;; --------------------------------------------------------------------------
;; Load `emodule'.
;; --------------------------------------------------------------------------
(add-to-list 'load-path "~/.emacs.d/emodule")
(require 'emodule)
2017-08-17 21:39:43 +02:00
;; --------------------------------------------------------------------------
;; Visual configuration.
;; --------------------------------------------------------------------------
2017-08-17 23:41:32 +02:00
;; Font ---------------------------------------------------------------------
2017-08-19 04:03:34 +02:00
(let* ((font-name "Source Code Pro")
(font-size 13.5)
2017-08-19 04:03:34 +02:00
(font-spec (concat font-name "-" (int-to-string font-size))))
(set-frame-font font-spec nil t)
(add-to-list 'default-frame-alist `(font . ,font-spec))
(set-face-attribute 'italic nil ;; Emacs does not set italic face
:family (concat font-name "-Italic")))
2017-08-17 23:41:32 +02:00
2017-08-17 21:39:43 +02:00
;; Fullscreen ---------------------------------------------------------------
(toggle-frame-maximized)
2017-08-17 21:39:43 +02:00
(add-to-list 'default-frame-alist '(fullscreen . maximized))
;; Visual clutter -----------------------------------------------------------
(scroll-bar-mode -1)
(tool-bar-mode -1)
(menu-bar-mode -1)
(blink-cursor-mode -1)
2017-08-17 21:39:43 +02:00
2017-08-17 23:41:32 +02:00
;; Theme --------------------------------------------------------------------
;; Add the necessary paths.
(add-to-list 'load-path "~/.emacs.d/themes/")
(add-to-list 'custom-theme-load-path "~/.emacs.d/themes/")
;; Load the dark theme by default.
(load-theme 'havoc-dark t) ;; Load personal theme
2017-08-17 23:41:32 +02:00
2018-11-06 02:14:48 +01:00
;; Splash screen ------------------------------------------------------------
;; Add path.
(add-to-list 'load-path "~/.emacs.d/init-buffer")
(require 'init-buffer)
2018-11-06 02:14:48 +01:00
;; Set the initial buffer.
(setq-default init-buffer-choice 'init-buffer/goto-buffer)
2018-11-06 02:14:48 +01:00
2017-08-24 23:41:18 +02:00
;; --------------------------------------------------------------------------
;; Change file in which custom variable changes are saved.
;; --------------------------------------------------------------------------
2017-08-29 22:05:06 +02:00
(setq-default custom-file "~/.emacs.d/custom.el")
2017-08-24 23:41:18 +02:00
;; *********************************************************************** ;;
;; ;;
2017-08-25 23:37:01 +02:00
;; MODULES ;;
;; ;;
;; ----------------------------------------------------------------------- ;;
;; ;;
2017-08-24 23:41:18 +02:00
;; ;;
;; Visual configuration must come before this point so that the frame can ;;
2017-08-25 00:20:38 +02:00
;; be set up before any time consuming package management. ;;
2017-08-24 23:41:18 +02:00
;; ;;
;; ;;
;; *********************************************************************** ;;
2017-08-25 00:08:47 +02:00
2017-08-25 23:37:01 +02:00
;; --------------------------------------------------------------------------
;; Load modules.
;; --------------------------------------------------------------------------
2017-08-24 22:41:24 +02:00
2017-09-03 02:21:35 +02:00
(emodule/init '(
emacs
helm
languages
modeline
org
programming
terminal
vcs
2017-09-02 14:45:42 +02:00
))
2017-08-24 22:41:24 +02:00
2017-08-24 23:41:18 +02:00
;; *********************************************************************** ;;
;; ;;
;; ;;
;; Any configuration that is not in a module or needs to override module ;;
;; settings should be set below this point. ;;
2017-08-24 23:41:18 +02:00
;; ;;
;; ;;
2017-08-25 23:37:01 +02:00
;; ----------------------------------------------------------------------- ;;
;; ;;
;; END MODULES ;;
;; ;;
2017-08-24 23:41:18 +02:00
;; *********************************************************************** ;;
;; --------------------------------------------------------------------------
;; Load any custom variables.
;; --------------------------------------------------------------------------
2017-08-29 22:05:06 +02:00
(load custom-file 'noerror)
2017-08-24 23:41:18 +02:00
) ;; Reset garbage collection settings.
2018-07-07 22:34:00 +02:00
(provide 'init)
;;; init.el ends here