From 0e0e5ef7b6d594eba9ffabeaa917c0edd5556d49 Mon Sep 17 00:00:00 2001 From: Kujtim Hoxha Date: Fri, 27 Jun 2025 17:46:12 +0200 Subject: [PATCH] chore: migrate config file from .crush.json to crush.json --- .crush.json | 11 ----------- crush.json | 7 +++++++ 2 files changed, 7 insertions(+), 11 deletions(-) delete mode 100644 .crush.json create mode 100644 crush.json diff --git a/.crush.json b/.crush.json deleted file mode 100644 index 0edb084c3ee5f74c9b279b634b5838b3035cee95..0000000000000000000000000000000000000000 --- a/.crush.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "$schema": "./crush-schema.json", - "lsp": { - "Go": { - "command": "gopls" - } - }, - "tui": { - "theme": "crush" - } -} diff --git a/crush.json b/crush.json new file mode 100644 index 0000000000000000000000000000000000000000..1b04ea6c24f8b64a3a12ceb47551f3177fa66302 --- /dev/null +++ b/crush.json @@ -0,0 +1,7 @@ +{ + "lsp": { + "Go": { + "command": "gopls" + } + } +}