Compare commits

..

No commits in common. "c69e7e43d8e36148f85892727d96cdfb3f18c024" and "579ccd16c1f06f74e62d07462f30f1b0a7fb1960" have entirely different histories.

12 changed files with 62 additions and 77 deletions

View file

@ -1,6 +1,5 @@
;; configure backups ;; configure backups
(setq backup-directory-alist '(("." . "~/.emacs.d/backups/") (setq backup-directory-alist '(("." . "~/.emacs.d/backups/"))
("/dev/shm" . "/dev/null"))
backup-by-copying t backup-by-copying t
delete-old-versions t delete-old-versions t
kept-new-versions 16 kept-new-versions 16

View file

@ -82,7 +82,3 @@
;; configure theme ;; configure theme
(custom-set-variables (custom-set-variables
'(custom-enabled-themes (quote (tango-dark)))) '(custom-enabled-themes (quote (tango-dark))))
;; configur authinfo file
(setq auth-sources
'((:source "~/.authinfo.gpg")))

View file

@ -1,3 +1,27 @@
;; magit
(use-package magit
:ensure t
:init
;; (taken from :open https://r0tty.org/git/dotfiles/emacs/tree/.emacs.d/config/development.el)
(defun vcsh (repo)
"Invoke magit on a vcsh repo. This requires an appropriate entry in `tramp-methods'."
(interactive (let ((repos (delq nil
(mapcar #'(lambda (name)
(if (string-match ".git$" name)
(substring name 0 -4)
nil))
(directory-files "~/.config/vcsh/repo.d")))))
(list (completing-read "Repository: " repos nil t))))
(magit-status-internal (format "/vcsh:%s:" repo)))
:config
;; Turn on flyspell when writing commit messages
(add-hook 'git-commit-setup-hook 'git-commit-turn-on-flyspell))
;; use ripgrep in emacs
(use-package deadgrep
:ensure t
:bind ("M-s d" . deadgrep))
;; paredit ;; paredit
(use-package paredit (use-package paredit
:ensure t :ensure t
@ -10,16 +34,6 @@
(add-hook 'lisp-interaction-mode-hook #'enable-paredit-mode) (add-hook 'lisp-interaction-mode-hook #'enable-paredit-mode)
(add-hook 'scheme-mode-hook #'enable-paredit-mode)) (add-hook 'scheme-mode-hook #'enable-paredit-mode))
(use-package highlight-parentheses
:ensure t
:config
(global-highlight-parentheses-mode t))
(use-package rainbow-delimiters
:ensure t
:config
(add-hook 'prog-mode-hook #'rainbow-delimiters-mode))
;; Hack to show only files known to git inside dired; needs the ;; Hack to show only files known to git inside dired; needs the
;; `git-find' shell script shim (taken from :open https://r0tty.org/git/dotfiles/emacs/tree/.emacs.d/config/development.el) ;; `git-find' shell script shim (taken from :open https://r0tty.org/git/dotfiles/emacs/tree/.emacs.d/config/development.el)
(defun git-dired (dir) (defun git-dired (dir)

View file

@ -1,18 +0,0 @@
;; magit
(use-package magit
:ensure t
:init
;; (taken from :open https://r0tty.org/git/dotfiles/emacs/tree/.emacs.d/config/development.el)
(defun vcsh (repo)
"Invoke magit on a vcsh repo. This requires an appropriate entry in `tramp-methods'."
(interactive (let ((repos (delq nil
(mapcar #'(lambda (name)
(if (string-match ".git$" name)
(substring name 0 -4)
nil))
(directory-files "~/.config/vcsh/repo.d")))))
(list (completing-read "Repository: " repos nil t))))
(magit-status-internal (format "/vcsh:%s:" repo)))
:config
;; Turn on flyspell when writing commit messages
(add-hook 'git-commit-setup-hook 'git-commit-turn-on-flyspell))

View file

@ -1,4 +0,0 @@
;; use ripgrep in emacs
(use-package deadgrep
:ensure t
:bind ("M-s d" . deadgrep))

View file

@ -57,7 +57,7 @@ symbols, which are converted to strings, and suffixed with \".el\"."
:group 'config-snippets :group 'config-snippets
:type '(repeat directory)) :type '(repeat directory))
(setq config-snippets '(base backups c calendar dev functions git gpg org pass ripgrep rust wl yaml)) (setq config-snippets '(base backups c calendar dev functions gpg org pass rust wl yaml))
(message "Loading\nconfig-snippets: %s\nconfig-snippets-path: %s" config-snippets config-snippet-path) (message "Loading\nconfig-snippets: %s\nconfig-snippets-path: %s" config-snippets config-snippet-path)
(dolist (snippet config-snippets) (dolist (snippet config-snippets)

View file

@ -5,11 +5,9 @@
!/.emacs.d/config/c.el !/.emacs.d/config/c.el
!/.emacs.d/config/dev.el !/.emacs.d/config/dev.el
!/.emacs.d/config/functions.el !/.emacs.d/config/functions.el
!/.emacs.d/config/git.el
!/.emacs.d/config/gpg.el !/.emacs.d/config/gpg.el
!/.emacs.d/config/org.el !/.emacs.d/config/org.el
!/.emacs.d/config/pass.el !/.emacs.d/config/pass.el
!/.emacs.d/config/ripgrep.el
!/.emacs.d/config/rust.el !/.emacs.d/config/rust.el
!/.emacs.d/config/tramp.el !/.emacs.d/config/tramp.el
!/.emacs.d/config/yaml.el !/.emacs.d/config/yaml.el