-
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.
- Loading branch information
Showing
7 changed files
with
7 additions
and
26 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
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 | ||
|
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 |
---|---|---|
@@ -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/") | ||
|
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 |
---|---|---|
@@ -1,9 +1,6 @@ | ||
;; | ||
;; init-commands | ||
;; | ||
;; initialize a few commands I use | ||
;; | ||
;; zjibben <[email protected]> | ||
;; initialize my own commands | ||
|
||
(require 'cl) | ||
|
||
|
@@ -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))))) | ||
|
||
|
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 |
---|---|---|
@@ -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 | ||
|
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 |
---|---|---|
@@ -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 | ||
|
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 |
---|---|---|
@@ -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))) )) | ||
|
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 |
---|---|---|
@@ -1,9 +1,6 @@ | ||
;; | ||
;; init-theme | ||
;; | ||
;; initialize theming | ||
;; | ||
;; zjibben <[email protected]> | ||
|
||
;;(setq color-theme-is-global nil) ;; only for color-theme package? | ||
|
||
|