https://github.com/swuecho/emacs_lightweight
https://github.com/swuecho/emacs_lightweight
Last synced: about 1 month ago
JSON representation
- Host: GitHub
- URL: https://github.com/swuecho/emacs_lightweight
- Owner: swuecho
- Created: 2014-06-29T03:34:31.000Z (almost 11 years ago)
- Default Branch: master
- Last Pushed: 2020-12-19T12:01:22.000Z (over 4 years ago)
- Last Synced: 2025-01-22T15:46:27.861Z (3 months ago)
- Language: Emacs Lisp
- Size: 902 KB
- Stars: 0
- Watchers: 3
- Forks: 0
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# module to install
1. evil
2. auto-complete
3. color-theme-solarized
4. magitadd package to package-list, it will be autoinstalled if not already
# elisp
(mapcar #'1+ [1 2 3 4])
;; (2 3 4 5)
(apply '+ '(1 2 3))(length "foobar")
(length [1 2 3])
# DONE: auto install these module
# TODO: start server problem in emacs(arrayp "asdf")
(setq s "When in the course")
⇒ "When in the course"
(fillarray s ?-)
;; what is ? represent?(symbol-name 'foo)
foo## how to add a custom function and load if when emacs start?
## how to load a file when emacs start?