From 8d810b02df0f2d24ee24ddfc7fdbbcf88a3403c5 Mon Sep 17 00:00:00 2001 From: Markus Mottl Date: Mon, 16 Dec 2024 01:34:32 -0500 Subject: [PATCH 1/7] Added .sexp S-expression files --- LS_COLORS | 1 + 1 file changed, 1 insertion(+) diff --git a/LS_COLORS b/LS_COLORS index 528a6ee..44b8bc3 100644 --- a/LS_COLORS +++ b/LS_COLORS @@ -114,6 +114,7 @@ STICKY_OTHER_WRITABLE 48;5;235;38;5;139;3 # core .sgml 38;5;178 # Data store # non-relational .rng 38;5;178 # Data store # non-relational .rnc 38;5;178 # Data store # non-relational +.sexp 38;5;178 # Data store # non-relational .accdb 38;5;60 # Data store # MS Access .accde 38;5;60 # Data store # MS Access .accdr 38;5;60 # Data store # MS Access From 62927f022fcd68bb2af2a9f529cc8ab8bbaae443 Mon Sep 17 00:00:00 2001 From: Markus Mottl Date: Mon, 16 Dec 2024 01:34:56 -0500 Subject: [PATCH 2/7] Added OCaml files --- LS_COLORS | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/LS_COLORS b/LS_COLORS index 44b8bc3..d27509d 100644 --- a/LS_COLORS +++ b/LS_COLORS @@ -242,7 +242,6 @@ STICKY_OTHER_WRITABLE 48;5;235;38;5;139;3 # core .dart 38;5;51 # Dart .asm 38;5;81 # ASM .cl 38;5;81 # LISP -.ml 38;5;81 # LISP .lisp 38;5;81 # LISP .rkt 38;5;81 # LISP .el 38;5;81 # LISP (Emacs) @@ -294,6 +293,10 @@ STICKY_OTHER_WRITABLE 48;5;235;38;5;139;3 # core .hi 38;5;110 # Haskell .hs 38;5;81 # Haskell .lhs 38;5;81 # Haskell +.ml 38;5;81 # OCaml +.mli 38;5;81 # OCaml +.mll 38;5;81 # OCaml +.mly 38;5;81 # OCaml .agda 38;5;81 # Agda .lagda 38;5;81 # Agda .lagda.tex 38;5;81 # Agda From 89e9d9c9595800b48b9e97f5f29dea4bd2d076aa Mon Sep 17 00:00:00 2001 From: Markus Mottl Date: Mon, 16 Dec 2024 01:35:55 -0500 Subject: [PATCH 3/7] Added OCaml Opam and Dune build files --- LS_COLORS | 3 +++ 1 file changed, 3 insertions(+) diff --git a/LS_COLORS b/LS_COLORS index d27509d..c67e036 100644 --- a/LS_COLORS +++ b/LS_COLORS @@ -346,6 +346,9 @@ STICKY_OTHER_WRITABLE 48;5;235;38;5;139;3 # core .containerignore 38;5;240 # Build process # Containers *Dockerfile 38;5;155 # Build process (Docker) .dockerignore 38;5;240 # Build process (Docker) +*dune 38;5;155 # Build process (OCaml Dune) +*dune-project 38;5;243 # Build process (OCaml Dune) +.opam 38;5;240 # Build process (OCaml Opam) *Makefile 38;5;155 # Build process (Make) *MANIFEST 38;5;243 # Build process (Make) *pm_to_blib 38;5;240 # Build process (Perl) From d9a68db319fabdb13e09bda1e39d20cfd6f22a35 Mon Sep 17 00:00:00 2001 From: Markus Mottl Date: Mon, 16 Dec 2024 01:36:44 -0500 Subject: [PATCH 4/7] Added Gradle files --- LS_COLORS | 1 + 1 file changed, 1 insertion(+) diff --git a/LS_COLORS b/LS_COLORS index c67e036..fb6c2b7 100644 --- a/LS_COLORS +++ b/LS_COLORS @@ -363,6 +363,7 @@ STICKY_OTHER_WRITABLE 48;5;235;38;5;139;3 # core .old 38;5;242 # Build process (Automake) .out 38;5;242 # Build process (Automake) .SKIP 38;5;244 # Build process (Automake) +.gradle 38;5;155 # Build process (Gradle) .diff 48;5;197;38;5;232 # Patch files .patch 48;5;197;38;5;232;1 # Patch files .bmp 38;5;97 # Graphics From e50397e251fc0240c589abcddb1527057fd4079f Mon Sep 17 00:00:00 2001 From: Markus Mottl Date: Mon, 16 Dec 2024 01:36:57 -0500 Subject: [PATCH 5/7] Added Bazel files --- LS_COLORS | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/LS_COLORS b/LS_COLORS index fb6c2b7..6cf8975 100644 --- a/LS_COLORS +++ b/LS_COLORS @@ -364,6 +364,13 @@ STICKY_OTHER_WRITABLE 48;5;235;38;5;139;3 # core .out 38;5;242 # Build process (Automake) .SKIP 38;5;244 # Build process (Automake) .gradle 38;5;155 # Build process (Gradle) +*WORKSPACE 38;5;155 # Build process (Bazel) +*BUILD 38;5;155 # Build process (Bazel) +.bazel 38;5;155 # Build process (Bazel) +.bazelrc 38;5;155 # Build process (Bazel) +.bazelversion 38;5;155 # Build process (Bazel) +.bzl 38;5;155 # Build process (Bazel) +*MODULE.bazel.lock 38;5;240 # Build process (Bazel) .diff 48;5;197;38;5;232 # Patch files .patch 48;5;197;38;5;232;1 # Patch files .bmp 38;5;97 # Graphics From b6451cbdb071ab607f1a97b7d627eb5ef971f306 Mon Sep 17 00:00:00 2001 From: Markus Mottl Date: Mon, 16 Dec 2024 01:37:16 -0500 Subject: [PATCH 6/7] Added Rust Cargo files --- LS_COLORS | 2 ++ 1 file changed, 2 insertions(+) diff --git a/LS_COLORS b/LS_COLORS index 6cf8975..53d61dd 100644 --- a/LS_COLORS +++ b/LS_COLORS @@ -371,6 +371,8 @@ STICKY_OTHER_WRITABLE 48;5;235;38;5;139;3 # core .bazelversion 38;5;155 # Build process (Bazel) .bzl 38;5;155 # Build process (Bazel) *MODULE.bazel.lock 38;5;240 # Build process (Bazel) +*Cargo.toml 38;5;155 # Build process (Cargo) +*Cargo.lock 38;5;240 # Build process (Cargo) .diff 48;5;197;38;5;232 # Patch files .patch 48;5;197;38;5;232;1 # Patch files .bmp 38;5;97 # Graphics From 2241a10af7c2e55f138376ba0c073b7b0832b948 Mon Sep 17 00:00:00 2001 From: Markus Mottl Date: Mon, 16 Dec 2024 01:54:18 -0500 Subject: [PATCH 7/7] Changed OCaml interface color --- LS_COLORS | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/LS_COLORS b/LS_COLORS index 53d61dd..a983b55 100644 --- a/LS_COLORS +++ b/LS_COLORS @@ -294,7 +294,7 @@ STICKY_OTHER_WRITABLE 48;5;235;38;5;139;3 # core .hs 38;5;81 # Haskell .lhs 38;5;81 # Haskell .ml 38;5;81 # OCaml -.mli 38;5;81 # OCaml +.mli 38;5;110 # OCaml .mll 38;5;81 # OCaml .mly 38;5;81 # OCaml .agda 38;5;81 # Agda