emacs

emacs is my favorite text editor due to it's tranparence and customizing ability.

Packages I used

built-in packages

dired

tramp

third-party packages

copilot.el

ellama

Notes

Ignore files in dired

(setq dired-omit-files "\\.dir-locals.el")
(add-hook 'dired-mode-hook (lambda () (dired-omit-mode)))
(add-hook 'dired-mode-hook 'auto-revert-mode)

Plan note

write package to make it works like cursor editor

.github/workflows/main.yml

name: Release

on:
  schedule:
    - cron: '0 0 * * 5'
  workflow_dispatch:
  push:

jobs:
  release:
    runs-on: macos-latest
    env:
      RELEASE_TAG: emacs
    
    steps:
      - name: Precheck
        run: |
          # Check if release exists
          if gh release view ${{ env.RELEASE_TAG }} &>/dev/null; then
            gh release delete ${{ env.RELEASE_TAG }} -y
          fi
        env:
          GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}

      - name: Checkout
        uses: actions/checkout@v4
        with:
          repository: mayphus/emacs
          fetch-depth: 0

      - name: Install dependencies
        run: |
          brew install autoconf automake texinfo libxml2 jansson libgccjit

      - name: Build
        run: |
          ./autogen.sh
          # ./configure --with-native-compilation --with-json --with-modules --with-xml2 --with-gnutls
          ./configure
          make

      - name: Code Sign
        run: |
          # Create a temporary keychain
          security create-keychain -p "${{ github.run_id }}" build.keychain
          security default-keychain -s build.keychain
          security unlock-keychain -p "${{ github.run_id }}" build.keychain
          
          # Import certificate
          echo "${{ secrets.MACOS_CERTIFICATE }}" | base64 --decode > certificate.p12
          security import certificate.p12 -k build.keychain -P "${{ secrets.MACOS_CERTIFICATE_PWD }}" -T /usr/bin/codesign
          
          # Enable codesign
          security set-key-partition-list -S apple-tool:,apple:,codesign: -s -k "${{ github.run_id }}" build.keychain
          
          # Sign the app
          /usr/bin/codesign --force --sign "${{ secrets.MACOS_DEVELOPER_ID }}" --options runtime ./nextstep/Emacs.app
          
          # Clean up
          security delete-keychain build.keychain

      - name: Pack
        run: |
          cd nextstep
          ls
          echo "Emacs.app"
          ls Emacs.app
          tar -czf ../Emacs.app.tar.gz Emacs.app
          cd ..

      - name: Release
        uses: softprops/action-gh-release@v1
        with:
          tag_name: ${{ env.RELEASE_TAG }}
          name: "Emacs"
          body: |
            Build of Emacs master branch for macOS
          files: Emacs.app.tar.gz
        env:
          GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}

things to do