2018-09-22 07:53:36 +00:00
|
|
|
|
|
|
|
# Created by https://www.gitignore.io/api/rust,emacs
|
|
|
|
|
|
|
|
### Emacs ###
|
|
|
|
# -*- mode: gitignore; -*-
|
|
|
|
*~
|
|
|
|
\#*\#
|
|
|
|
/.emacs.desktop
|
|
|
|
/.emacs.desktop.lock
|
|
|
|
*.elc
|
|
|
|
auto-save-list
|
|
|
|
tramp
|
|
|
|
.\#*
|
|
|
|
|
|
|
|
# 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
|
|
|
|
|
|
|
|
### Rust ###
|
|
|
|
# Generated by Cargo
|
|
|
|
# will have compiled files and executables
|
|
|
|
/target/
|
|
|
|
|
|
|
|
# Remove Cargo.lock from gitignore if creating an executable, leave it for libraries
|
|
|
|
# More information here https://doc.rust-lang.org/cargo/guide/cargo-toml-vs-cargo-lock.html
|
2018-09-18 11:39:34 +00:00
|
|
|
Cargo.lock
|
2018-09-22 07:53:36 +00:00
|
|
|
|
|
|
|
# These are backup files generated by rustfmt
|
|
|
|
**/*.rs.bk
|
|
|
|
|
|
|
|
|
|
|
|
# End of https://www.gitignore.io/api/rust,emacs
|