diff options
author | tdback <tyler@tdback.net> | 2025-02-08 10:52:22 -0500 |
---|---|---|
committer | tdback <tyler@tdback.net> | 2025-02-08 10:52:22 -0500 |
commit | 3e525726ab29101cee11a5186162682f1befe3c2 (patch) | |
tree | 72506c015774efb208f0a0ab193fb2497b681c9e | |
parent | 9c720e972375824cb1e39c84b57a1244dfb7f4e5 (diff) |
lisp/td-programming: add direnv support
-rw-r--r-- | lisp/td-programming.el | 16 |
1 files changed, 12 insertions, 4 deletions
diff --git a/lisp/td-programming.el b/lisp/td-programming.el index eee8d67..7b378e9 100644 --- a/lisp/td-programming.el +++ b/lisp/td-programming.el @@ -1,6 +1,8 @@ -;;; -*- lexical-binding: t; -*- +;;; td-programming.el --- for writing code -*- lexical-binding: t; -*- -;;; ----- Completion ----- +;;; Code: + +;;; Completion (use-package cape :defer 10 @@ -65,7 +67,7 @@ :custom (completion-styles '(orderless flex))) -;;; ----- Modes ----- +;;; Modes (use-package dockerfile-mode :ensure t @@ -97,7 +99,7 @@ :ensure t :defer t) -;;; ----- Tooling & Enhancements ----- +;;; Tooling & Enhancements (use-package compile ;; Using `C-u' before recompile acts like `M-x compile'. @@ -105,6 +107,11 @@ :custom (compilation-scroll-output t)) +(use-package direnv + :ensure t + :config + (direnv-mode)) + (use-package magit :ensure t :commands magit-status) @@ -121,3 +128,4 @@ . paren-face-mode)) (provide 'td-programming) +;;; td-programming.el ends here |