From 5a882a4330a5341511d3d6ecfe174341b11a24dc Mon Sep 17 00:00:00 2001 From: Dilan Gilluly Date: Sat, 24 Jan 2026 12:41:56 -0500 Subject: [PATCH] rm vscodium, added ccdt alias --- .config/VSCodium/User/settings.json | 28 ------------------- .../VSCodium/User/snippets/dg.code-snippets | 8 ------ .config/VSCodium/User/snippets/python.json | 12 -------- .config/dg-bash/aliases.sh | 1 + make-links.sh | 8 ------ 5 files changed, 1 insertion(+), 56 deletions(-) delete mode 100644 .config/VSCodium/User/settings.json delete mode 100644 .config/VSCodium/User/snippets/dg.code-snippets delete mode 100644 .config/VSCodium/User/snippets/python.json diff --git a/.config/VSCodium/User/settings.json b/.config/VSCodium/User/settings.json deleted file mode 100644 index 708f958..0000000 --- a/.config/VSCodium/User/settings.json +++ /dev/null @@ -1,28 +0,0 @@ -{ - "editor.fontSize": 18, - "editor.fontFamily": "'ComicShannsMono Nerd Font Mono', 'Droid Sans Mono', 'monospace', monospace", - "files.enableTrash": false, - "window.restoreWindows": "none", - "editor.parameterHints.enabled": false, - "window.customTitleBarVisibility": "auto", - "window.commandCenter": false, - "workbench.layoutControl.enabled": false, - "terminal.integrated.tabs.enabled": false, - "explorer.compactFolders": false, - "workbench.startupEditor": "none", - "terminal.integrated.enablePersistentSessions": false, - "terminal.integrated.fontFamily": "'ComicShannsMono Nerd Font Mono', 'monospace', monospace", - "terminal.integrated.fontSize": 16, - "update.showReleaseNotes": false, - "explorer.confirmDragAndDrop": false, - "editor.minimap.enabled": false, - "jupyter.askForKernelRestart": false, - "chat.commandCenter.enabled": false, - "files.associations": { - "*.kv": "yaml" - }, - "terminal.integrated.cursorBlinking": true, - "editor.cursorBlinking": "expand", - "editor.cursorSmoothCaretAnimation": "on", - "svelte.enable-ts-plugin": true -} \ No newline at end of file diff --git a/.config/VSCodium/User/snippets/dg.code-snippets b/.config/VSCodium/User/snippets/dg.code-snippets deleted file mode 100644 index 9036bdb..0000000 --- a/.config/VSCodium/User/snippets/dg.code-snippets +++ /dev/null @@ -1,8 +0,0 @@ -{ -"Hugo friendly current time": { - "scope": "markdown, yaml", - "prefix": "hg-time", - "body": "${CURRENT_YEAR}-${CURRENT_MONTH}-${CURRENT_DATE}T${CURRENT_HOUR}:${CURRENT_MINUTE}:${CURRENT_SECOND}${CURRENT_TIMEZONE_OFFSET}", - "description": "Inserts a Hugo friendly current time" -} -} \ No newline at end of file diff --git a/.config/VSCodium/User/snippets/python.json b/.config/VSCodium/User/snippets/python.json deleted file mode 100644 index 1960c7b..0000000 --- a/.config/VSCodium/User/snippets/python.json +++ /dev/null @@ -1,12 +0,0 @@ -{ - "Creates a new main function.": { - "prefix": "newmain", - "body": [ - "def main():", - "\t$1", - "", - "if __name__ == \"__main__\":", - "\tmain()" - ] - } -} \ No newline at end of file diff --git a/.config/dg-bash/aliases.sh b/.config/dg-bash/aliases.sh index 7b2dfb0..786c47a 100644 --- a/.config/dg-bash/aliases.sh +++ b/.config/dg-bash/aliases.sh @@ -5,3 +5,4 @@ alias pbcopy="xsel -i -b" alias pbpaste="xsel -o -b" alias hs="hugo server --disableFastRender && rm -r public" alias us="./uploadsite.sh" +alias ccdt="date -Is | pbcopy" diff --git a/make-links.sh b/make-links.sh index 63f596b..ec43ea3 100755 --- a/make-links.sh +++ b/make-links.sh @@ -14,14 +14,6 @@ mkdir -p ~/.config/ncmpcpp ln -sf $PWD/.config/ncmpcpp/config ~/.config/ncmpcpp/config echo "ncmpcpp links... Done." -# Links for VSCodium - -echo "Making links for VSCodium" -mkdir -p ~/.config/VSCodium/User -ln -sf $PWD/.config/VSCodium/User/settings.json ~/.config/VSCodium/User/settings.json -ln -sfT $PWD/.config/VSCodium/User/snippets ~/.config/VSCodium/User/snippets -echo "VSCodium links... Done." - # Links for nvim echo "Making links for NVIM"