Compare commits

..

No commits in common. "c5282b7460c1e12f053489aa4dbaa678a7c8c302" and "251268265b0a03a4143151a7f3c38fa136411077" have entirely different histories.

2 changed files with 1 additions and 12 deletions

View File

@ -54,15 +54,6 @@
"AWS MFA failed, check *aws-mfa* buffer for details")) "AWS MFA failed, check *aws-mfa* buffer for details"))
(process-send-string proc (concat mfa-token "\n")))) (process-send-string proc (concat mfa-token "\n"))))
(define-minor-mode aws-modeline-mode
"Displays the current AWS profile in the modeline." :global t
(if aws-modeline-mode
(add-to-list 'mode-line-misc-info
'(:eval (format "AWS:%s " (or aws-current-profile "default"))))
(setq mode-line-misc-info
(delete '(:eval (format "AWS:%s " (or aws-current-profile "default")))
mode-line-misc-info))))
;; A dired interface to S3 ;; A dired interface to S3
(use-package s3ed (use-package s3ed
:commands (s3ed-find-file :commands (s3ed-find-file

View File

@ -15,9 +15,7 @@
(use-package doom-themes) (use-package doom-themes)
(use-package doom-modeline (use-package doom-modeline
:config :config
(doom-modeline-mode 1) (doom-modeline-mode 1))
:custom
(doom-modeline-env-version nil))
;; Load custom themes ;; Load custom themes
(add-to-list 'custom-theme-load-path (expand-file-name "config/themes" user-emacs-directory)) (add-to-list 'custom-theme-load-path (expand-file-name "config/themes" user-emacs-directory))