Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/kickingvegas/cclisp
Emacs configuration files for Charles Choi
https://github.com/kickingvegas/cclisp
emacs emacs-configuration emacs-lisp
Last synced: 3 months ago
JSON representation
Emacs configuration files for Charles Choi
- Host: GitHub
- URL: https://github.com/kickingvegas/cclisp
- Owner: kickingvegas
- Created: 2022-12-30T01:31:47.000Z (about 2 years ago)
- Default Branch: main
- Last Pushed: 2024-09-17T19:54:43.000Z (5 months ago)
- Last Synced: 2024-09-18T00:28:36.256Z (5 months ago)
- Topics: emacs, emacs-configuration, emacs-lisp
- Language: Emacs Lisp
- Homepage:
- Size: 465 KB
- Stars: 23
- Watchers: 2
- Forks: 2
- Open Issues: 0
-
Metadata Files:
- Readme: README.org
Awesome Lists containing this project
README
* Charles Choi Emacs Configuration Files
This directory contains Elisp files used by Charles Choi to customize his usage of Emacs.
Initially ~ccinit.el~ is loaded from ~init.el~. Personal variable configuration (~custom-set-variables~, ~custom-set-faces~) is stored in ~custom.el~. Note that ~init.el~ is *not* included in this repo, however its relevant contents are shown below:
#+begin_src elisp
;; CC's Emacs Init File.(require 'package) ;; You might already have this line
(add-to-list 'package-archives
'("melpa" . "http://melpa.org/packages/") t)(setq cc/cclisp-path (concat (getenv "HOME") "/" "emacs/cclisp"))
(setq load-path (cons cc/cclisp-path load-path))
(package-initialize) ;; You might already have this line
(unless package-archive-contents
(package-refresh-contents))(unless (package-installed-p 'use-package)
(package-install 'use-package))(setq custom-file (concat cc/cclisp-path "/" "custom.el"))
(load custom-file 'noerror)(package-install-selected-packages)
(load "ccinit")
;;(load custom-file 'noerror)(put 'dired-find-alternate-file 'disabled nil)
(put 'upcase-region 'disabled nil)
(put 'downcase-region 'disabled nil)
#+end_srcFrom ~ccinit.el~, all other Elisp files in this directory are loaded.