aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--.gitignore52
1 files changed, 52 insertions, 0 deletions
diff --git a/.gitignore b/.gitignore
new file mode 100644
index 0000000..a7a4d23
--- /dev/null
+++ b/.gitignore
@@ -0,0 +1,52 @@
1# Created by https://www.gitignore.io/api/vim,rust,linux
2# Edit at https://www.gitignore.io/?templates=vim,rust,linux
3
4### Linux ###
5*~
6
7# temporary files which can be created if a process still has a handle open of a deleted file
8.fuse_hidden*
9
10# Linux trash folder which might appear on any partition or disk
11.Trash-*
12
13# .nfs files are created when an open file is removed but is still being accessed
14.nfs*
15
16### Rust ###
17# Generated by Cargo
18# will have compiled files and executables
19/target/
20
21# Remove Cargo.lock from gitignore if creating an executable, leave it for libraries
22# More information here https://doc.rust-lang.org/cargo/guide/cargo-toml-vs-cargo-lock.html
23Cargo.lock
24
25# These are backup files generated by rustfmt
26**/*.rs.bk
27
28### Vim ###
29# Swap
30[._]*.s[a-v][a-z]
31[._]*.sw[a-p]
32[._]s[a-rt-v][a-z]
33[._]ss[a-gi-z]
34[._]sw[a-p]
35
36# Session
37Session.vim
38Sessionx.vim
39
40# Temporary
41.netrwhist
42
43# Auto-generated tag files
44tags
45
46# Persistent undo
47[._]*.un~
48
49# Coc configuration directory
50.vim
51
52# End of https://www.gitignore.io/api/vim,rust,linux