2017-11-12 19:46:14 +01:00
|
|
|
;;; init.el --- Package bootstrapping. -*- lexical-binding: t; -*-
|
|
|
|
|
2018-03-04 00:14:13 +01:00
|
|
|
;; Packages are installed via Nix configuration, this file only
|
|
|
|
;; initialises the newly loaded packages.
|
2017-11-12 19:46:14 +01:00
|
|
|
|
2018-06-22 10:29:31 +02:00
|
|
|
(require 'use-package)
|
2017-11-12 19:46:14 +01:00
|
|
|
(require 'seq)
|
2013-07-08 01:15:05 +02:00
|
|
|
|
2017-11-12 20:24:21 +01:00
|
|
|
(package-initialize)
|
2013-07-08 01:15:05 +02:00
|
|
|
|
2018-06-22 10:29:31 +02:00
|
|
|
;; Initialise all packages installed via Nix.
|
|
|
|
;;
|
|
|
|
;; TODO: Generate this section in Nix for all packages that do not
|
|
|
|
;; require special configuration.
|
|
|
|
|
|
|
|
;;
|
|
|
|
;; Packages providing generic functionality.
|
|
|
|
;;
|
|
|
|
|
|
|
|
(use-package ace-window
|
|
|
|
:bind (("C-x o" . ace-window))
|
|
|
|
:init
|
2018-11-13 15:35:37 +01:00
|
|
|
(setq aw-keys '(?f ?j ?d ?k ?s ?l ?a)
|
|
|
|
aw-scope 'frame))
|
2018-06-22 10:29:31 +02:00
|
|
|
|
|
|
|
(use-package auth-source-pass :init (auth-source-pass-enable))
|
|
|
|
|
|
|
|
(use-package avy
|
|
|
|
:bind (("M-j" . avy-goto-char)
|
|
|
|
("M-p" . avy-pop-mark)
|
|
|
|
("M-g g" . avy-goto-line)))
|
|
|
|
|
|
|
|
(use-package browse-kill-ring)
|
|
|
|
|
|
|
|
(use-package company
|
|
|
|
:hook ((prog-mode . company-mode))
|
|
|
|
:init (setq company-tooltip-align-annotations t))
|
|
|
|
|
|
|
|
(use-package dash)
|
|
|
|
(use-package dash-functional)
|
2019-12-15 23:14:31 +01:00
|
|
|
(use-package dottime :config (dottime-display-mode t))
|
2018-06-22 10:29:31 +02:00
|
|
|
(use-package gruber-darker-theme)
|
|
|
|
(use-package ht)
|
|
|
|
(use-package hydra)
|
|
|
|
(use-package idle-highlight-mode :hook ((prog-mode . idle-highlight-mode)))
|
2018-06-28 11:01:54 +02:00
|
|
|
(use-package paredit :hook ((lisp-mode . paredit-mode)
|
|
|
|
(emacs-lisp-mode . paredit-mode)))
|
2018-06-22 10:29:31 +02:00
|
|
|
(use-package multiple-cursors)
|
|
|
|
(use-package pinentry
|
|
|
|
:init
|
|
|
|
(setq epa-pinentry-mode 'loopback)
|
|
|
|
(pinentry-start))
|
|
|
|
|
|
|
|
(use-package rainbow-delimiters :hook (prog-mode . rainbow-delimiters-mode))
|
|
|
|
(use-package rainbow-mode)
|
|
|
|
(use-package s)
|
|
|
|
(use-package smartparens :init (smartparens-global-mode))
|
|
|
|
(use-package string-edit)
|
2018-06-28 11:02:24 +02:00
|
|
|
(use-package telephone-line) ;; configuration happens outside of use-package
|
2018-06-22 10:29:31 +02:00
|
|
|
(use-package undo-tree :init (global-undo-tree-mode))
|
|
|
|
(use-package uuidgen)
|
|
|
|
(use-package which-key :init (which-key-mode t))
|
|
|
|
|
|
|
|
;;
|
|
|
|
;; Applications in emacs
|
|
|
|
;;
|
|
|
|
|
|
|
|
(use-package magit
|
|
|
|
:bind ("C-c g" . magit-status)
|
|
|
|
:init (setq magit-repository-directories '(("/home/vincent/projects" . 2))))
|
|
|
|
|
|
|
|
(use-package password-store)
|
|
|
|
(use-package pg)
|
|
|
|
(use-package restclient)
|
|
|
|
|
|
|
|
;;
|
|
|
|
;; Packages providing language-specific functionality
|
|
|
|
;;
|
|
|
|
|
2018-09-02 18:14:12 +02:00
|
|
|
(use-package cargo
|
|
|
|
:hook ((rust-mode . cargo-minor-mode)
|
|
|
|
(cargo-process-mode . visual-line-mode))
|
|
|
|
:bind (:map cargo-minor-mode-map ("C-c C-c C-l" . ignore)))
|
2018-06-22 10:29:31 +02:00
|
|
|
|
|
|
|
(use-package dockerfile-mode)
|
|
|
|
|
|
|
|
(use-package erlang
|
|
|
|
:hook ((erlang-mode . (lambda ()
|
|
|
|
;; Don't indent after '>' while I'm writing
|
|
|
|
(local-set-key ">" 'self-insert-command)))))
|
|
|
|
|
2019-12-14 14:35:03 +01:00
|
|
|
(use-package f)
|
|
|
|
|
2019-12-14 14:23:20 +01:00
|
|
|
(use-package go-mode
|
2019-12-14 16:59:20 +01:00
|
|
|
:bind (:map go-mode-map ("C-c C-r" . recompile))
|
2019-12-14 14:23:20 +01:00
|
|
|
:hook ((go-mode . (lambda ()
|
|
|
|
(setq tab-width 2)
|
|
|
|
(setq-local compile-command
|
|
|
|
(concat "go build " buffer-file-name))))))
|
|
|
|
|
2018-06-22 10:29:31 +02:00
|
|
|
(use-package haskell-mode)
|
|
|
|
|
|
|
|
(use-package jq-mode
|
|
|
|
:init (add-to-list 'auto-mode-alist '("\\.jq\\'" . jq-mode)))
|
|
|
|
|
2018-10-12 19:11:43 +02:00
|
|
|
(use-package kotlin-mode
|
2019-12-14 16:59:20 +01:00
|
|
|
:hook ((kotlin-mode . (lambda ()
|
|
|
|
(setq indent-line-function #'indent-relative)))))
|
2018-06-22 10:29:31 +02:00
|
|
|
|
2019-12-14 14:23:20 +01:00
|
|
|
(use-package lsp-mode)
|
|
|
|
|
2018-06-22 10:29:31 +02:00
|
|
|
(use-package markdown-mode
|
|
|
|
:init
|
|
|
|
(add-to-list 'auto-mode-alist '("\\.txt\\'" . markdown-mode))
|
|
|
|
(add-to-list 'auto-mode-alist '("\\.markdown\\'" . markdown-mode))
|
|
|
|
(add-to-list 'auto-mode-alist '("\\.md\\'" . markdown-mode)))
|
|
|
|
|
|
|
|
(use-package markdown-toc)
|
2018-10-28 23:39:58 +01:00
|
|
|
|
|
|
|
(use-package nix-mode
|
2019-12-14 16:59:20 +01:00
|
|
|
:hook ((nix-mode . (lambda ()
|
|
|
|
(setq indent-line-function #'nix-indent-line)))))
|
2018-10-28 23:39:58 +01:00
|
|
|
|
2018-06-22 10:29:31 +02:00
|
|
|
(use-package nginx-mode)
|
|
|
|
(use-package rust-mode)
|
|
|
|
(use-package terraform-mode)
|
|
|
|
(use-package toml-mode)
|
|
|
|
(use-package web-mode)
|
|
|
|
(use-package yaml-mode)
|
|
|
|
|
2019-12-14 16:38:03 +01:00
|
|
|
;; Configuration changes in `customize` can not actually be persisted
|
|
|
|
;; to the customise file that Emacs is currently using (since it comes
|
|
|
|
;; from the Nix store).
|
|
|
|
;;
|
|
|
|
;; The way this will work for now is that Emacs will *write*
|
|
|
|
;; configuration to the file tracked in my repository, while not
|
|
|
|
;; actually *reading* it from there (unless Emacs is rebuilt).
|
2019-12-14 18:15:18 +01:00
|
|
|
(setq custom-file (expand-file-name "~/depot/tools/emacs/config/custom.el"))
|
|
|
|
(load-library "custom")
|
2013-07-08 01:15:05 +02:00
|
|
|
|
2018-06-28 11:02:24 +02:00
|
|
|
(defvar home-dir (expand-file-name "~"))
|
2013-08-05 11:54:38 +02:00
|
|
|
|
2013-07-08 01:15:05 +02:00
|
|
|
;; Seed RNG
|
|
|
|
(random t)
|
|
|
|
|
2019-12-14 16:24:53 +01:00
|
|
|
;; Load all other Emacs configuration. These configurations are
|
|
|
|
;; added to `load-path' by Nix.
|
|
|
|
(mapc 'require '(desktop
|
|
|
|
mail-setup
|
|
|
|
look-and-feel
|
|
|
|
functions
|
|
|
|
settings
|
|
|
|
modes
|
|
|
|
bindings
|
|
|
|
term-setup
|
|
|
|
eshell-setup))
|
|
|
|
(telephone-line-setup)
|
|
|
|
(ace-window-display-mode)
|
|
|
|
|
|
|
|
;; If a local configuration file exists, it should be loaded. No
|
|
|
|
;; other configuration comes from `user-emacs-directory'.
|
2019-12-14 14:35:03 +01:00
|
|
|
(let ((local-file (expand-file-name (f-join user-emacs-directory "local.el"))))
|
|
|
|
(when (f-exists? local-file)
|
|
|
|
(load local-file)))
|
2018-11-13 15:35:37 +01:00
|
|
|
|
2019-12-14 16:24:53 +01:00
|
|
|
(provide 'init)
|