From a71ec3c2f035ef15681f6360ec54297cf11398d4 Mon Sep 17 00:00:00 2001 From: Fabio Scotto di Santolo Date: Tue, 2 Sep 2025 11:25:21 +0200 Subject: [PATCH] Move Emacs configuration --- emacs/.config/emacs/.gitignore | 57 +++++++++++++++++++++++++ emacs/{.emacs => .config/emacs/init.el} | 0 2 files changed, 57 insertions(+) create mode 100755 emacs/.config/emacs/.gitignore rename emacs/{.emacs => .config/emacs/init.el} (100%) diff --git a/emacs/.config/emacs/.gitignore b/emacs/.config/emacs/.gitignore new file mode 100755 index 0000000..cdb315e --- /dev/null +++ b/emacs/.config/emacs/.gitignore @@ -0,0 +1,57 @@ +# Created by https://www.toptal.com/developers/gitignore/api/emacs +# Edit at https://www.toptal.com/developers/gitignore?templates=emacs + +### Emacs ### +# -*- mode: gitignore; -*- +*~ +\#*\# +/.emacs.desktop +/.emacs.desktop.lock +*.elc +auto-save-list +tramp +.\#* +eln-cache +projects + +# Org-mode +.org-id-locations +*_archive + +# flymake-mode +*_flymake.* + +# eshell files +/eshell/history +/eshell/lastdir + +# elpa packages +/elpa/ + +# reftex files +*.rel + +# AUCTeX auto folder +/auto/ + +# cask packages +.cask/ +dist/ + +# Flycheck +flycheck_*.el + +# server auth directory +/server/ + +# projectiles files +.projectile + +# directory configuration +.dir-locals.el + +# network security +/network-security.data + + +# End of https://www.toptal.com/developers/gitignore/api/emacs diff --git a/emacs/.emacs b/emacs/.config/emacs/init.el similarity index 100% rename from emacs/.emacs rename to emacs/.config/emacs/init.el