Added Custom.el for emacs

All generated content should go here.
This commit is contained in:
James Patrick 2019-05-17 01:23:52 -04:00
parent 8caec07555
commit e137009579
2 changed files with 10 additions and 1 deletions

6
.gitignore vendored
View File

@ -5,6 +5,10 @@
# Ignore the temp files created by emacs. # Ignore the temp files created by emacs.
*.#* *.#*
################################################################################
# EMACS
emacs/custom.el
################################################################################ ################################################################################
# VIM # VIM
vim/backup/* vim/backup/*
@ -15,4 +19,4 @@ vim/.netrwhist
################################################################################ ################################################################################
# ZSH # ZSH
zsh/transient/* zsh/transient/*

View File

@ -310,6 +310,11 @@ executes.
This function is mostly useful for variables that need to be set This function is mostly useful for variables that need to be set
before packages are loaded. If you are unsure, you should try in setting them in before packages are loaded. If you are unsure, you should try in setting them in
`dotspacemacs/user-config' first." `dotspacemacs/user-config' first."
;; Define Custom File.
(setq custom-file
(expand-file-name "custom.el" dotspacemacs-directory)
)
) )
(defun dotspacemacs/user-config () (defun dotspacemacs/user-config ()