Skip to content

Commit

Permalink
Clean up .el headers
Browse files Browse the repository at this point in the history
  • Loading branch information
zjibben committed Jul 31, 2018
1 parent dff43a2 commit 5a6dd4e
Show file tree
Hide file tree
Showing 7 changed files with 7 additions and 26 deletions.
3 changes: 0 additions & 3 deletions init-lite.el
Original file line number Diff line number Diff line change
@@ -1,11 +1,8 @@
;;
;; emacs-lite configuration file
;;
;; I use this to load up a lighter emacs in the terminal for quick edits.
;; It essentially contains most of the configuration from init-config,
;; without setting up my packages and more complex commands and modes.
;;
;; zjibben <[email protected]>

;; basic configuration
(setq-default indent-tabs-mode nil ; spaces instead of tabs
Expand Down
5 changes: 1 addition & 4 deletions init.el
Original file line number Diff line number Diff line change
@@ -1,7 +1,4 @@
;;
;; emacs configuration file
;;
;; zjibben <[email protected]>
;; my emacs configuration file

(add-to-list 'load-path "~/.emacs.d/lisp/init/")
(add-to-list 'load-path "~/.emacs.d/lisp/")
Expand Down
7 changes: 2 additions & 5 deletions lisp/init/init-commands.el
Original file line number Diff line number Diff line change
@@ -1,9 +1,6 @@
;;
;; init-commands
;;
;; initialize a few commands I use
;;
;; zjibben <[email protected]>
;; initialize my own commands

(require 'cl)

Expand Down Expand Up @@ -59,7 +56,7 @@

;; if ctags isn't found, use etags
;; case insensitive, including .f .f90 .c .h .cu .cl files (add .py?)
(shell-command
(shell-command
(format "find %s -type f -iname \"*.f90\" -o -iname \"*.[fch]\" -o -iname \"*.c[lu]\" \\
| etags - -o %s/TAGS" dir dir)))))

Expand Down
6 changes: 1 addition & 5 deletions lisp/init/init-config.el
Original file line number Diff line number Diff line change
@@ -1,11 +1,7 @@
;;
;; init-config
;;
;; initialize basic emacs configuration
;;
;; zjibben <[email protected]>
;; basic emacs configuration

;; basic configuration
(setq-default display-time-default-load-average nil ; hide load average in modeline
display-time-day-and-date 1 ; display both date and time
indent-tabs-mode nil ; spaces instead of tabs
Expand Down
4 changes: 2 additions & 2 deletions lisp/init/init-packages.el
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
;; initialize repositories and packages
;; init-packages
;;
;; zjibben <[email protected]>
;; initialize repositories and packages

;; add repos
;; LANL proxy doesn't like some https, so need to use http when behind it
Expand Down
5 changes: 1 addition & 4 deletions lisp/init/init-proxy.el
Original file line number Diff line number Diff line change
@@ -1,12 +1,9 @@
;;
;; init-proxy
;;
;; initialize proxy for emacs internet access
;;
;; zjibben <[email protected]>

;; note proxy addresses and ports are set in init-personal-info.el
(setq url-proxy-services
(setq url-proxy-services
`(("no_proxy" . ,no-proxy-domain)
("http" . ,(concat http-proxy-host ":" (number-to-string http-proxy-port)))
("https" . ,(concat https-proxy-host ":" (number-to-string https-proxy-port))) ))
Expand Down
3 changes: 0 additions & 3 deletions lisp/init/init-theme.el
Original file line number Diff line number Diff line change
@@ -1,9 +1,6 @@
;;
;; init-theme
;;
;; initialize theming
;;
;; zjibben <[email protected]>

;;(setq color-theme-is-global nil) ;; only for color-theme package?

Expand Down

0 comments on commit 5a6dd4e

Please sign in to comment.