forked from kaushalmodi/.emacs.d
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Create a var `user-personal-directory` - Rename `setup-disables` to `setup-var-overrides` - Load `setup-var-overrides` before the very first `load`/`require` - Add `personal/setup-var-overrides-EXAMPLE.el` - Remove useless functions `prepend-path` and `append-path`; use plain old `add-to-list` instead. Advantage of `add-to-list` is that it does not allow duplicate elements.
- Loading branch information
1 parent
120fefc
commit a0403eb
Showing
4 changed files
with
48 additions
and
29 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,22 @@ | ||
;; Time-stamp: <2015-06-16 17:11:37 kmodi> | ||
|
||
;; Variable overrides | ||
|
||
;; This file can be used to override variables using `setq' forms. | ||
;; An example use is to disable loading of selected packages. | ||
;; Format to be used: (setq disable-pkg-PKGNAME t) | ||
;; Example: (setq disable-pkg-pdf-tools t) ; Disable loading of `pdf-tools' | ||
;; Note that all packages CANNOT be disabled in this manner. | ||
|
||
;; (setq user-personal-directory "~/.emacs.d/personal/") | ||
|
||
;; (setq disable-pkg-pdf-tools t) | ||
;; (setq disable-pkg-yasnippet t) | ||
;; (setq disable-pkg-ivy t) | ||
;; (setq disable-pkg-shackle t) | ||
;; (setq disable-pkg-fci t) | ||
;; (setq disable-pkg-hl-anything t) | ||
|
||
|
||
;; Below line *has to be uncommented* for the setup in this file to be effective | ||
;; (provide 'setup-var-overrides) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters