2018-04-25 19:26:53 +02:00
|
|
|
;;; misc.el --- Hosting miscellaneous configuration -*- lexical-binding: t -*-
|
|
|
|
;; Author: William Carroll <wpcarro@gmail.com>
|
|
|
|
|
|
|
|
;;; Commentary:
|
|
|
|
;; This is the home of any configuration that couldn't find a better home.
|
|
|
|
|
|
|
|
;;; Code:
|
|
|
|
|
2020-08-13 19:05:45 +02:00
|
|
|
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
|
|
|
|
;; Dependencies
|
|
|
|
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
|
|
|
|
|
|
|
|
(require 'project)
|
|
|
|
(require 'f)
|
|
|
|
(require 'dash)
|
|
|
|
|
|
|
|
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
|
|
|
|
;; Configuration
|
|
|
|
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
|
|
|
|
|
2020-06-16 12:46:17 +02:00
|
|
|
;; I'm borrowing from the dot-time format (i.e. https://dotti.me) to encode the
|
|
|
|
;; timestamp. This displays the UTC time and an offset to show the number of
|
|
|
|
;; hours East or West of UTC my current timezone is using `current-time-zone'.
|
|
|
|
;;
|
|
|
|
;; Reminder to me:
|
|
|
|
;; LON: +00 (UTC) or +01 (BST)
|
|
|
|
;; NYC: -05
|
|
|
|
;; SF: -07
|
|
|
|
(setq display-time-format
|
|
|
|
(concat "%H·%M"
|
|
|
|
(format "%0+3d" (/ (car (current-time-zone)) 3600))
|
2020-07-17 16:39:37 +02:00
|
|
|
" %a %d %b"))
|
2019-10-09 13:13:56 +02:00
|
|
|
(display-time-mode 1)
|
|
|
|
|
2020-07-06 21:45:33 +02:00
|
|
|
;; Remove the boilerplate in the *scratch* buffer
|
|
|
|
(setq initial-scratch-message "")
|
|
|
|
|
2018-04-25 19:26:53 +02:00
|
|
|
;; disable custom variable entries from being written to ~/.emacs.d/init.el
|
2020-01-10 21:33:28 +01:00
|
|
|
(setq custom-file "~/.emacs.d/custom.el")
|
2018-04-25 19:26:53 +02:00
|
|
|
(load custom-file 'noerror)
|
|
|
|
|
2019-01-13 20:33:17 +01:00
|
|
|
;; integrate Emacs with X11 clipboard
|
2019-10-09 13:13:56 +02:00
|
|
|
(setq select-enable-primary t)
|
|
|
|
(setq select-enable-clipboard t)
|
2019-01-13 20:33:17 +01:00
|
|
|
(general-def 'insert
|
2019-10-09 13:13:56 +02:00
|
|
|
"s-v" #'clipboard-yank
|
|
|
|
"C-S-v" #'clipboard-yank)
|
2019-01-13 20:33:17 +01:00
|
|
|
|
2018-04-25 19:26:53 +02:00
|
|
|
;; transparently edit compressed files
|
|
|
|
(auto-compression-mode t)
|
|
|
|
|
2019-01-13 20:33:17 +01:00
|
|
|
;; autowrap when over the fill-column
|
2019-10-09 13:13:56 +02:00
|
|
|
(setq-default auto-fill-function #'do-auto-fill)
|
2019-01-13 20:33:17 +01:00
|
|
|
|
2018-10-02 15:57:15 +02:00
|
|
|
;; link to Emacs source code
|
2019-10-09 13:13:56 +02:00
|
|
|
;; TODO: Update this link.
|
|
|
|
(setq find-function-C-source-directory
|
|
|
|
"~/Dropbox/programming/emacs/src")
|
2018-10-02 15:57:15 +02:00
|
|
|
|
2018-04-25 19:26:53 +02:00
|
|
|
;; change emacs prompts from "yes or no" -> "y or n"
|
|
|
|
(fset 'yes-or-no-p 'y-or-n-p)
|
|
|
|
|
|
|
|
;; open photos in Emacs
|
|
|
|
(auto-image-file-mode 1)
|
|
|
|
|
|
|
|
;; disable line-wrapping
|
|
|
|
(setq-default truncate-lines 1)
|
|
|
|
|
|
|
|
;; shell file indentation
|
|
|
|
(setq sh-basic-offset 2)
|
|
|
|
(setq sh-indentation 2)
|
|
|
|
|
2020-01-15 23:11:53 +01:00
|
|
|
;; Emacs library that interfaces with my Linux password manager.
|
|
|
|
(use-package password-store)
|
|
|
|
|
2020-02-02 19:31:39 +01:00
|
|
|
(use-package vterm
|
|
|
|
:config
|
|
|
|
(general-define-key
|
|
|
|
:keymaps '(vterm-mode-map)
|
|
|
|
:states '(insert)
|
|
|
|
"C-S-v" #'vterm-yank)
|
|
|
|
(general-define-key
|
|
|
|
:keymaps '(vterm-mode-map)
|
|
|
|
:states '(normal)
|
|
|
|
"K" #'evil-scroll-line-up
|
|
|
|
"J" #'evil-scroll-line-down
|
|
|
|
"C-b" #'evil-scroll-page-up
|
|
|
|
"C-f" #'evil-scroll-page-down))
|
|
|
|
|
2020-01-22 22:12:08 +01:00
|
|
|
;; Use en Emacs buffer as a REST client.
|
|
|
|
;; For more information: http://emacsrocks.com/e15.html
|
|
|
|
(use-package restclient)
|
|
|
|
|
2020-01-16 20:19:30 +01:00
|
|
|
;; Run `package-lint' before publishing to MELPA.
|
|
|
|
(use-package package-lint)
|
|
|
|
|
2020-01-16 02:12:05 +01:00
|
|
|
;; Parser combinators in Elisp.
|
|
|
|
(use-package parsec)
|
|
|
|
|
2019-03-20 16:32:38 +01:00
|
|
|
;; disable company mode when editing markdown
|
|
|
|
;; TODO: move this out of wpc-misc.el and into a later file to call
|
|
|
|
;; `(disable company-mode)'
|
2019-10-09 13:13:56 +02:00
|
|
|
(use-package markdown-mode
|
|
|
|
:config
|
|
|
|
;; TODO: Add assertion that pandoc is installed and it is accessible from
|
|
|
|
;; Emacs.
|
|
|
|
(setq markdown-command "pandoc")
|
|
|
|
(setq markdown-split-window-direction 'right)
|
2019-12-22 22:36:15 +01:00
|
|
|
;; (add-hook 'markdown-mode-hook #'markdown-live-preview-mode)
|
|
|
|
)
|
|
|
|
|
2020-01-15 23:11:53 +01:00
|
|
|
(use-package alert)
|
|
|
|
|
2019-12-22 22:36:15 +01:00
|
|
|
(use-package refine)
|
2019-10-09 13:13:56 +02:00
|
|
|
|
|
|
|
;; Required by some google-emacs package commands.
|
|
|
|
(use-package deferred)
|
|
|
|
|
|
|
|
;; git integration
|
2020-01-17 11:26:44 +01:00
|
|
|
(use-package magit
|
|
|
|
:config
|
|
|
|
(setq magit-display-buffer-function
|
|
|
|
#'magit-display-buffer-fullframe-status-v1))
|
2019-10-09 13:13:56 +02:00
|
|
|
|
2020-01-22 22:13:10 +01:00
|
|
|
(use-package magit-popup)
|
|
|
|
|
2019-10-09 13:13:56 +02:00
|
|
|
;; http
|
|
|
|
(use-package request)
|
|
|
|
|
|
|
|
;; perl-compatible regular expressions
|
|
|
|
(use-package pcre2el)
|
|
|
|
|
|
|
|
;; alternative to help
|
|
|
|
(use-package helpful)
|
2018-04-25 19:26:53 +02:00
|
|
|
|
2020-01-17 11:41:01 +01:00
|
|
|
;; Emacs integration with direnv
|
|
|
|
(use-package direnv
|
|
|
|
:config
|
|
|
|
(direnv-mode))
|
|
|
|
|
2020-01-06 16:20:49 +01:00
|
|
|
;; Superior Elisp library for working with dates and times.
|
|
|
|
;; TODO: Put this where my other installations for dash.el, s.el, a.el, and
|
|
|
|
;; other utility Elisp libraries are located.
|
|
|
|
(use-package ts)
|
|
|
|
|
2018-04-25 19:26:53 +02:00
|
|
|
;; persist history etc b/w Emacs sessions
|
|
|
|
(setq desktop-save 'if-exists)
|
|
|
|
(desktop-save-mode 1)
|
|
|
|
(setq desktop-globals-to-save
|
|
|
|
(append '((extended-command-history . 30)
|
|
|
|
(file-name-history . 100)
|
|
|
|
(grep-history . 30)
|
|
|
|
(compile-history . 30)
|
|
|
|
(minibuffer-history . 50)
|
|
|
|
(query-replace-history . 60)
|
|
|
|
(read-expression-history . 60)
|
|
|
|
(regexp-history . 60)
|
|
|
|
(regexp-search-ring . 20)
|
|
|
|
(search-ring . 20)
|
|
|
|
(shell-command-history . 50)
|
|
|
|
tags-file-name
|
|
|
|
register-alist)))
|
|
|
|
|
|
|
|
;; config Emacs to use $PATH values
|
|
|
|
(use-package exec-path-from-shell
|
|
|
|
:if (memq window-system '(mac ns))
|
|
|
|
:config
|
|
|
|
(exec-path-from-shell-initialize))
|
|
|
|
|
|
|
|
;; Emacs autosave, backup, interlocking files
|
|
|
|
(setq auto-save-default nil
|
|
|
|
make-backup-files nil
|
|
|
|
create-lockfiles nil)
|
|
|
|
|
|
|
|
;; ensure code wraps at 80 characters by default
|
2019-10-09 13:13:56 +02:00
|
|
|
(setq-default fill-column constants/fill-column)
|
2018-04-25 19:26:53 +02:00
|
|
|
|
|
|
|
(put 'narrow-to-region 'disabled nil)
|
|
|
|
|
|
|
|
;; trim whitespace on save
|
|
|
|
(add-hook 'before-save-hook #'delete-trailing-whitespace)
|
|
|
|
|
2020-08-20 19:41:39 +02:00
|
|
|
;; call `git secret hide` after saving ~/briefcase/secrets.json
|
|
|
|
(add-hook 'after-save-hook
|
|
|
|
(lambda ()
|
|
|
|
(when (f-equal? (buffer-file-name) "~/briefcase/secrets.json")
|
|
|
|
(shell-command "git secret hide"))))
|
|
|
|
|
2018-04-25 19:26:53 +02:00
|
|
|
;; use tabs instead of spaces
|
|
|
|
(setq-default indent-tabs-mode nil)
|
|
|
|
|
|
|
|
;; automatically follow symlinks
|
|
|
|
(setq vc-follow-symlinks t)
|
|
|
|
|
|
|
|
;; fullscreen settings
|
2019-10-09 13:13:56 +02:00
|
|
|
(defvar ns-use-native-fullscreen nil)
|
2018-04-25 19:26:53 +02:00
|
|
|
|
|
|
|
(use-package yasnippet
|
|
|
|
:config
|
2020-01-23 15:52:18 +01:00
|
|
|
(setq yas-snippet-dirs '("~/.emacs.d/snippets/"))
|
2018-04-25 19:26:53 +02:00
|
|
|
(yas-global-mode 1))
|
|
|
|
|
|
|
|
(use-package projectile
|
|
|
|
:config
|
|
|
|
(projectile-mode t))
|
|
|
|
|
2020-08-13 19:05:45 +02:00
|
|
|
(defun project-find-function--briefcase (dir)
|
|
|
|
"Find the nearest default.nix file; otherwise, terminate at the .git
|
|
|
|
directory."
|
|
|
|
(let ((filenames (->> dir f-files (-map #'f-filename)))
|
|
|
|
(dirnames (->> dir f-directories (-map #'f-dirname))))
|
|
|
|
(if (or (-contains? filenames "default.nix")
|
|
|
|
(-contains? dirnames ".git"))
|
|
|
|
(cons 'monorepo dir)
|
|
|
|
(if (f-parent dir)
|
|
|
|
(project-find-function--briefcase (f-parent dir))
|
|
|
|
nil))))
|
|
|
|
|
|
|
|
(cl-defmethod project-root ((project (head monorepo)))
|
|
|
|
(cdr project))
|
|
|
|
|
|
|
|
(cl-defmethod project-roots ((project (head monorepo)))
|
|
|
|
(list (cdr project)))
|
|
|
|
|
|
|
|
(cl-defmethod project-external-roots ((project (head monorepo)))
|
|
|
|
(project-external-roots (cons 'vc (cdr project))))
|
|
|
|
|
|
|
|
(cl-defmethod project-ignores ((project (head monorepo)) dir)
|
|
|
|
(project-ignores (cons 'vc (cdr project)) dir))
|
|
|
|
|
|
|
|
(cl-defmethod project-files ((project (head monorepo)) &optional dirs)
|
|
|
|
(project-files (cons 'vc (cdr project)) dirs))
|
|
|
|
|
|
|
|
(setq project-find-functions (list #'project-find-function--briefcase))
|
|
|
|
|
2019-10-09 13:13:56 +02:00
|
|
|
(use-package deadgrep
|
2018-04-25 19:26:53 +02:00
|
|
|
:config
|
2019-10-09 13:13:56 +02:00
|
|
|
(general-define-key
|
|
|
|
:keymaps 'deadgrep-mode-map
|
|
|
|
:states 'normal
|
|
|
|
"o" #'deadgrep-visit-result-other-window)
|
2020-01-10 21:30:52 +01:00
|
|
|
(setq-default deadgrep--context '(0 . 3))
|
|
|
|
(defun deadgrep/region ()
|
|
|
|
"Run a ripgrep search on the active region."
|
|
|
|
(interactive)
|
|
|
|
(deadgrep (region/to-string)))
|
|
|
|
(defun deadgrep/dwim ()
|
|
|
|
"If a region is active, use that as the search, otherwise don't."
|
|
|
|
(interactive)
|
|
|
|
(with-current-buffer (current-buffer)
|
|
|
|
(if (region-active-p)
|
|
|
|
(setq deadgrep--additional-flags '("--multiline"))
|
|
|
|
(deadgrep/region)
|
|
|
|
(call-interactively #'deadgrep))))
|
2019-10-09 13:13:56 +02:00
|
|
|
(advice-add
|
|
|
|
'deadgrep--format-command
|
|
|
|
:filter-return
|
|
|
|
(lambda (cmd)
|
|
|
|
(replace-regexp-in-string
|
|
|
|
"^rg " "rg --hidden " cmd))))
|
|
|
|
|
|
|
|
;; TODO: Do I need this when I have swiper?
|
|
|
|
(use-package counsel)
|
|
|
|
|
|
|
|
(use-package counsel-projectile)
|
2018-04-25 19:26:53 +02:00
|
|
|
|
|
|
|
;; search Google, Stackoverflow from within Emacs
|
|
|
|
(use-package engine-mode
|
|
|
|
:config
|
|
|
|
(defengine google
|
|
|
|
"http://www.google.com/search?ie=utf-8&oe=utf-8&q=%s"
|
|
|
|
:keybinding "g")
|
|
|
|
(defengine stack-overflow
|
|
|
|
"https://stackoverflow.com/search?q=%s"
|
|
|
|
:keybinding "s"))
|
|
|
|
|
2019-10-09 13:13:56 +02:00
|
|
|
;; EGlot (another LSP client)
|
|
|
|
(use-package eglot)
|
|
|
|
|
|
|
|
;; Microsoft's Debug Adapter Protocol (DAP)
|
|
|
|
(use-package dap-mode
|
|
|
|
:after lsp-mode
|
|
|
|
:config
|
|
|
|
(dap-mode 1)
|
|
|
|
(dap-ui-mode 1))
|
|
|
|
|
2018-09-04 21:01:07 +02:00
|
|
|
;; Microsoft's Language Server Protocol (LSP)
|
|
|
|
(use-package lsp-ui
|
|
|
|
:config
|
|
|
|
(add-hook 'lsp-mode-hook #'lsp-ui-mode))
|
2019-10-09 13:13:56 +02:00
|
|
|
|
2018-09-04 21:01:07 +02:00
|
|
|
(use-package company-lsp
|
|
|
|
:config
|
|
|
|
(push 'company-lsp company-backends))
|
|
|
|
|
2019-10-09 13:13:56 +02:00
|
|
|
;; Wilfred/suggest.el - Tool for discovering functions basesd on declaring your
|
|
|
|
;; desired inputs and outputs.
|
|
|
|
(use-package suggest)
|
|
|
|
|
|
|
|
;; Malabarba/paradox - Enhances the `list-packages' view.
|
|
|
|
(use-package paradox
|
|
|
|
:config
|
|
|
|
(paradox-enable))
|
|
|
|
|
|
|
|
;; TODO: Consider supporting a wpc-elisp.el package for Elisp tooling.
|
|
|
|
;; The following functions are quite useful for Elisp development:
|
|
|
|
;; - `emr-el-find-unused-definitions'
|
|
|
|
(use-package emr
|
|
|
|
:config
|
|
|
|
(define-key prog-mode-map (kbd "M-RET") #'emr-show-refactor-menu))
|
|
|
|
|
2019-03-08 19:18:30 +01:00
|
|
|
(defun wpc/frame-name ()
|
|
|
|
"Return the name of the current frame."
|
|
|
|
(frame-parameter nil 'name))
|
|
|
|
|
2020-03-10 23:14:35 +01:00
|
|
|
;; Start the Emacs server
|
|
|
|
(server-start)
|
|
|
|
|
2018-04-25 19:26:53 +02:00
|
|
|
(provide 'wpc-misc)
|
2018-09-04 21:01:07 +02:00
|
|
|
;;; wpc-misc.el ends here
|