This commit is contained in:
2025-08-28 14:39:48 -06:00
parent 6466379e98
commit c5b32b9acc
42 changed files with 2500 additions and 18 deletions

View File

@@ -0,0 +1,13 @@
# -*- mode: snippet -*-
# name: Minimal Elisp file
# uuid:
# key: __
# condition: t
# expand-env: ((yas-indent-line 'fixed) (yas-wrap-around-region 'nil) (this-current-file-name (file-name-base (buffer-file-name (current-buffer)))))
# --
;;; ${1:`this-current-file-name`}.el -*- lexical-binding: t; -*-
$2
(provide '$1)
;;; $1.el ends here

View File

@@ -0,0 +1,11 @@
# -*- mode: snippet -*-
# name: shell
# key: __shell
# --
{ pkgs ? import <nixpkgs> {}, ... }:
pkgs.mkShell {
packages = with pkgs; [
$1
];
}