Emacs Literate Programming

In this tutorial, we will explore Literate Programming in Emacs, showcasing various Hello World examples. For more insights on literate programming, refer to here and draw inspiration from here. Download org file from this tutorial Setting up Emacs Clone the Spacemacs repository: 1 git clone https://github.com/syl20bnr/spacemacs ~/.emacs.d Clone example dotfiles: 1 cd $HOME && git clone https://github.com/imago/dotfiles.git dotfiles && cp dotfiles/.spacemacs . Setting up Python dependencies Install python libraries in a virtual environment....

January 9, 2025 · 5 min

Using AI features within Emacs

To utilize different language models like ChatGPT in Emacs, you can follow these steps: 1. Setting up Emacs: Clone the Spacemacs repository: 1 git clone https://github.com/syl20bnr/spacemacs ~/.emacs.d Clone example dotfiles: 1 cd $HOME && git clone https://github.com/imago/dotfiles.git dotfiles && cp dotfiles/.spacemacs . 2. Installing GPG on Mac using Homebrew: 1 brew install gpg 3. Creating and utilizing ChatGPT API key:...

January 5, 2025 · 1 min