mirror of
https://github.com/correl/dotfiles.git
synced 2024-11-21 19:18:41 +00:00
[emacs] Remove old configuration
I use Doom Emacs exclusively, no need to keep the old files around.
This commit is contained in:
parent
dbbf7ec120
commit
7e334193b2
5 changed files with 0 additions and 1658 deletions
31
.emacs.d/.gitignore
vendored
31
.emacs.d/.gitignore
vendored
|
@ -1,31 +0,0 @@
|
|||
# Packages
|
||||
.cask
|
||||
elpa
|
||||
|
||||
# Configuration
|
||||
emacs.el
|
||||
custom.el
|
||||
|
||||
# Data
|
||||
.org-id-locations
|
||||
.python-environments
|
||||
abbrev_defs
|
||||
ac-comphist.dat
|
||||
auto-save-list
|
||||
backups
|
||||
bookmarks
|
||||
eshell
|
||||
image-dired
|
||||
org-clock-save.el
|
||||
projectile-bookmarks.eld
|
||||
projectile.cache
|
||||
recentf
|
||||
request
|
||||
savehist
|
||||
session.*
|
||||
tramp
|
||||
url
|
||||
var
|
||||
|
||||
# Misc
|
||||
*~
|
1528
.emacs.d/emacs.org
1528
.emacs.d/emacs.org
File diff suppressed because it is too large
Load diff
|
@ -1,44 +0,0 @@
|
|||
(require 'package)
|
||||
(package-initialize)
|
||||
|
||||
(add-to-list 'package-archives '("org" . "https://orgmode.org/elpa/") t)
|
||||
(add-to-list 'package-archives '("melpa" . "https://melpa.org/packages/") t)
|
||||
(add-to-list 'package-archives '("marmalade" . "https://marmalade-repo.org/packages/") t)
|
||||
|
||||
(setq straight-enable-use-package-integration nil)
|
||||
(setq straight-enable-package-integration nil)
|
||||
|
||||
(let ((bootstrap-file (concat user-emacs-directory "straight/bootstrap.el"))
|
||||
(bootstrap-version 2))
|
||||
(unless (file-exists-p bootstrap-file)
|
||||
(with-current-buffer
|
||||
(url-retrieve-synchronously
|
||||
"https://raw.githubusercontent.com/raxod502/straight.el/develop/install.el"
|
||||
'silent 'inhibit-cookies)
|
||||
(goto-char (point-max))
|
||||
(eval-print-last-sexp)))
|
||||
(load bootstrap-file nil 'nomessage))
|
||||
|
||||
(unless (package-installed-p 'use-package)
|
||||
(progn
|
||||
(package-refresh-contents)
|
||||
(package-install 'use-package)
|
||||
(package-initialize)))
|
||||
|
||||
(eval-and-compile
|
||||
(defvar use-package-verbose t)
|
||||
(require 'use-package))
|
||||
|
||||
(use-package quelpa
|
||||
:ensure t)
|
||||
|
||||
(quelpa
|
||||
'(quelpa-use-package
|
||||
:fetcher git
|
||||
:url "https://framagit.org/steckerhalter/quelpa-use-package.git"))
|
||||
(require 'quelpa-use-package)
|
||||
|
||||
(use-package org
|
||||
:ensure org-plus-contrib)
|
||||
|
||||
(org-babel-load-file "~/.emacs.d/emacs.org")
|
|
@ -1,48 +0,0 @@
|
|||
;;; swig-mode.el
|
||||
|
||||
;; Copyright 2014 Theldoria
|
||||
;;
|
||||
;; Author: theldoria@hotmail.com
|
||||
;; Time-stamp: <2014-03-10 10:15:19 roland>
|
||||
;; Version: 0.1
|
||||
|
||||
;; This file is not part of GNU Emacs.
|
||||
|
||||
;; This file is free software: you can redistribute it and/or modify
|
||||
;; it under the terms of the GNU General Public License as published by
|
||||
;; the Free Software Foundation, either version 2 of the License, or
|
||||
;; (at your option) any later version.
|
||||
|
||||
;; It is distributed in the hope that it will be useful, but WITHOUT
|
||||
;; ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
|
||||
;; or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public
|
||||
;; License for more details.
|
||||
|
||||
;; You should have received a copy of the GNU General Public License
|
||||
;; along with it. If not, see <http://www.gnu.org/licenses/>.
|
||||
|
||||
;;; Commentary:
|
||||
|
||||
;;
|
||||
|
||||
;; Put this file into your load-path and the following into your ~/.emacs:
|
||||
;; (require 'mscgen-mode)
|
||||
|
||||
;;; Code:
|
||||
|
||||
(eval-when-compile
|
||||
(require 'cl))
|
||||
|
||||
;;; Options
|
||||
|
||||
;;;###autoload
|
||||
(define-derived-mode mscgen-mode
|
||||
dot-mode "mscgen"
|
||||
"Major mode for mscgen."
|
||||
(interactive))
|
||||
|
||||
(add-to-list 'auto-mode-alist '("\\.\\(i\\|msc\\)$" . mscgen-mode))
|
||||
|
||||
(provide 'mscgen-mode)
|
||||
|
||||
;;; mscgen-mode.el ends here
|
|
@ -1,7 +0,0 @@
|
|||
#!/bin/bash
|
||||
# Description: My Emacs configuration
|
||||
set -e
|
||||
|
||||
if ! [ -d ${HOME}/.emacs.d ]; then
|
||||
_run "Install .emacs.d" ln -s ${HOME}/dotfiles/.emacs.d ${HOME}/.emacs.d
|
||||
fi
|
Loading…
Reference in a new issue