home-manager: inital commit

This commit is contained in:
Evar Smith 2025-06-25 01:35:01 -04:00
parent faaaa3d324
commit 2cbef00925
31 changed files with 1558 additions and 0 deletions

View file

@ -0,0 +1,23 @@
;;; tools/terraform-plus/init.el -*- lexical-binding: t; -*-
;;; Mode
;; (define-derived-mode terraform-plus-section-mode special-mode "Terraform-Plus-Sections"
;; "Parent major mode that terraform-plus-like sections inherit"
;; (buffer-disable-undo)
;; (setq truncate-lines t)
;; (setq buffer-read-only t)
;; (setq show-trailing-whitespace nil))
;; (defvar terraform-plus-section-mode-map
;; (let ((map (make-keymap)))
;; (suppress-keymap map t)
;; (define-key map (kbd "TAB") 'terraform-plus-section-toggle)
;; map))
;;; Visibility
;; (defun terraform-plus-section-toggle (section)
;; "Toggle the visibility of the current section"
;; ())