From 7125573de912ea8f70a3b43b2626404ffdc1bb63 Mon Sep 17 00:00:00 2001 From: zendesk-acicchetti Date: Mon, 24 May 2021 10:54:26 -0400 Subject: [PATCH] Dockerfile mode --- emacs/init.el | 8 +++++++- zsh/zshrc | 2 +- 2 files changed, 8 insertions(+), 2 deletions(-) diff --git a/emacs/init.el b/emacs/init.el index 6f045ac..881a0dc 100644 --- a/emacs/init.el +++ b/emacs/init.el @@ -69,7 +69,7 @@ ("melpa" . "https://melpa.org/packages/") ("org" . "https://orgmode.org/elpa/"))) '(package-selected-packages - '(systemd apache-mode magit-delta go-mode org-roam ox-jira consult embark-consult embark selectrum-prescient prescient marginalia consult-flycheck consult-selectrum selectrum lua-mode lsp-mode yaml-mode evil-lispy treemacs-magit treemacs-evil treemacs lsp-pyright lsp-ui rustic flycheck origami groovy-mode avy editorconfig org-crypt tree-sitter-langs tree-sitter centaur-tabs dashboard page-break-lines wakatime-mode super-save ox-pandoc evil-surround evil-collection undo-tree toc-org evil-org org-plus-contrib evil-goggles evil-expat evil-commentary auto-package-update lispy smartparens which-key git-gutter rainbow-delimiters auto-complete-distel auto-complete evil magit evil-magit)) + '(dockerfile-mode systemd apache-mode magit-delta go-mode org-roam ox-jira consult embark-consult embark selectrum-prescient prescient marginalia consult-flycheck consult-selectrum selectrum lua-mode lsp-mode yaml-mode evil-lispy treemacs-magit treemacs-evil treemacs lsp-pyright lsp-ui rustic flycheck origami groovy-mode avy editorconfig org-crypt tree-sitter-langs tree-sitter centaur-tabs dashboard page-break-lines wakatime-mode super-save ox-pandoc evil-surround evil-collection undo-tree toc-org evil-org org-plus-contrib evil-goggles evil-expat evil-commentary auto-package-update lispy smartparens which-key git-gutter rainbow-delimiters auto-complete-distel auto-complete evil magit evil-magit)) '(prescient-filter-method '(literal regexp initialism fuzzy)) '(ring-bell-function 'ignore) '(rustic-format-trigger 'on-compile) @@ -264,6 +264,12 @@ ;; Apache config mode (use-package apache-mode) + +;; Dockerfile Mode +(use-package dockerfile-mode + :config + (add-to-list 'auto-mode-alist '("Dockerfile\\'" . dockerfile-mode))) + ;; Origamimode (use-package origami :ensure evil diff --git a/zsh/zshrc b/zsh/zshrc index b3ba2a3..074bfcc 100644 --- a/zsh/zshrc +++ b/zsh/zshrc @@ -37,7 +37,7 @@ zle -N down-line-or-beginning-search export COMPLETION_WAITING_DOTS="true" export VISUAL='emacsclient -c -a=""' -export EDITOR='editc' +export EDITOR='emacsclient -c -a=""' path=("$HOME/bin" "$HOME/go/bin" $path) local ZSH_PLUGIN_DIR="$HOME/.zsh_plugins"