Compare commits

...

4 commits

Author SHA1 Message Date
Laureηt 3d738ee0a2
🙈 hide .direnv folder 2023-06-04 01:19:48 +02:00
Laureηt 250df59069
🔧 add comments to .envrc 2023-06-04 01:18:42 +02:00
Laureηt 120bc29183
🙈 update .gitignore comments 2023-06-04 01:18:27 +02:00
Laureηt 2aae666fe4
🔧 .editorconfig 2023-06-04 01:18:06 +02:00
4 changed files with 19 additions and 5 deletions

View file

@ -1,9 +1,9 @@
root = true
[*]
indent_style = space
indent_size = 2
end_of_line = lf
charset = utf-8
trim_trailing_whitespace = true
end_of_line = lf
indent_style = space
insert_final_newline = true
trim_trailing_whitespace = true

1
.envrc
View file

@ -1 +1,2 @@
# use devshell from flake.nix
use flake

4
.gitignore vendored
View file

@ -1,6 +1,6 @@
# Ignore the direnv directory
# direnv files
.direnv
# Ignore build outputs from performing a nix-build or `nix build` command
# `nix build` outputs
result
result-*

13
.vscode/settings.json vendored Normal file
View file

@ -0,0 +1,13 @@
{
"files.exclude": {
// defaults
"**/.git": true,
"**/.svn": true,
"**/.hg": true,
"**/CVS": true,
"**/.DS_Store": true,
"**/Thumbs.db": true,
// extras
"**/.direnv": true,
}
}