commit ed3332c18d987bbe6ad9a3527c82850380f88405
parent 9b4a7cdef8152d65ad20155b192f043062609801
Author: Mark Feller <mjfeller1992@gmail.com>
Date: Tue, 18 Aug 2020 18:43:41 -0600
merge emacs change back into dots
Diffstat:
5 files changed, 34 insertions(+), 10 deletions(-)
diff --git a/dots/.emacs.d/README b/dots/.emacs.d/README
@@ -13,7 +13,7 @@ packages future startups will be much faster.
There are several subdirectories:
'core' holds primary configuration that I feel lost without.
-'lisp' holds custom user lisp code. Useful for personal packages,
+'lisp' holds custom user lisp code. Useful for site packages,
personal information, etc.
'modules' holds package/language specific configuration that is
useful when working with specific tasks or within specific
diff --git a/dots/.emacs.d/core/core-bootstrap.el b/dots/.emacs.d/core/core-bootstrap.el
@@ -28,8 +28,8 @@
(setq package-user-dir "~/.cache/elpa")
(setq package-archives
- '(("melpa-stable" . "http://melpa-stable.milkbox.net/packages/")
- ("melpa" . "http://melpa.milkbox.net/packages/")
+ '(("melpa-stable" . "https://stable.melpa.org/packages/")
+ ("melpa" . "https://melpa.org/packages/")
("gnu" . "http://elpa.gnu.org/packages/")
("org" . "http://orgmode.org/elpa/")))
diff --git a/dots/.emacs.d/init.el b/dots/.emacs.d/init.el
@@ -112,6 +112,7 @@
(require 'module-evil)
(require 'module-git)
(require 'module-go)
+(require 'module-kubernetes)
(require 'module-ledger)
(require 'module-multiple-cursors)
(require 'module-notmuch)
diff --git a/dots/.emacs.d/modules/module-kubernetes.el b/dots/.emacs.d/modules/module-kubernetes.el
@@ -1,10 +1,33 @@
-(use-package kubernetes
- :ensure t
- :commands (kubernetes-overview))
+;;; module-kubernetes.el
-;; If you want to pull in the Evil compatibility package.
-(use-package kubernetes-evil
- :ensure t
- :after kubernetes)
+;; Author: Mark Feller <mark.feller@member.fsf.org>
+
+;; This file is not part of GNU Emacs.
+
+;; This file is free software; you can redistribute it and/or modify
+;; it under the terms of the GNU General Public License as published by
+;; the Free Software Foundation; either version 3, or (at your option)
+;; any later version.
+
+;; This file is distributed in the hope that it will be useful,
+;; but WITHOUT ANY WARRANTY; without even the implied warranty of
+;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+;; GNU General Public License for more details.
+
+;; You should have received a copy of the GNU General Public License
+;; along with this file. If not, see <http://www.gnu.org/licenses/>.
+
+;;; Commentary:
+
+;;; Code:
+
+(require 'module-yaml)
+
+(use-package kubel
+ :config
+ (add-to-list 'evil-emacs-state-modes 'kubel-mode)
+ (add-hook 'kubel-mode-hook 'disable-line-numbers))
(provide 'module-kubernetes)
+
+;;; module-kubernetes.el ends here
diff --git a/dots/.emacs.d/scripts/Center-Window.scpt b/dots/.emacs.d/scripts/Center-Window.scpt
Binary files differ.