emacs: Added a custom-git-clone function
This commit is contained in:
parent
0de09c890d
commit
d23221d243
1 changed files with 9 additions and 0 deletions
|
@ -35,6 +35,15 @@
|
||||||
|
|
||||||
(load file)))
|
(load file)))
|
||||||
|
|
||||||
|
;; This clones a git repository to 'foldername in .emacs.d
|
||||||
|
;; if there isn't already a folder with that name
|
||||||
|
(defun custom-clone-git (url foldername)
|
||||||
|
"Clones a git repository to .emacs.d/foldername"
|
||||||
|
(let ((fullpath (concat "~/.emacs.d/" foldername)))
|
||||||
|
(unless (file-exists-p fullpath)
|
||||||
|
(shell-command (concat "git clone " url " " fullpath))))
|
||||||
|
)
|
||||||
|
|
||||||
;; These come from the emacs starter kit
|
;; These come from the emacs starter kit
|
||||||
(defun esk-pretty-lambdas ()
|
(defun esk-pretty-lambdas ()
|
||||||
(font-lock-add-keywords
|
(font-lock-add-keywords
|
||||||
|
|
Loading…
Reference in a new issue