From 052b5b2ebbc9ef26d4b5324a8693e601d85276b3 Mon Sep 17 00:00:00 2001 From: Dilan Gilluly Date: Thu, 5 Jun 2025 17:29:56 -0400 Subject: [PATCH] (change): custom prompt instead of oh-my-zsh --- .config/VSCodium/User/settings.json | 4 ++-- .zshrc | 3 +++ make-links.sh | 2 +- 3 files changed, 6 insertions(+), 3 deletions(-) create mode 100644 .zshrc diff --git a/.config/VSCodium/User/settings.json b/.config/VSCodium/User/settings.json index ab65a1a..25d9859 100644 --- a/.config/VSCodium/User/settings.json +++ b/.config/VSCodium/User/settings.json @@ -1,5 +1,5 @@ { - "editor.fontSize": 16, + "editor.fontSize": 18, "editor.fontFamily": "'Comic Mono', 'Droid Sans Mono', 'monospace', monospace", "files.enableTrash": false, "window.restoreWindows": "none", @@ -12,10 +12,10 @@ "workbench.startupEditor": "none", "terminal.integrated.enablePersistentSessions": false, "terminal.integrated.fontFamily": "'MesloLGS NF', 'monospace', monospace", + "terminal.integrated.fontSize": 16, "update.showReleaseNotes": false, "explorer.confirmDragAndDrop": false, "editor.minimap.enabled": false, - "terminal.integrated.fontFamily": "'MesloLGS NF','monospace',monospace", "jupyter.askForKernelRestart": false, "chat.commandCenter.enabled": false, "files.associations": { diff --git a/.zshrc b/.zshrc new file mode 100644 index 0000000..5e54611 --- /dev/null +++ b/.zshrc @@ -0,0 +1,3 @@ +export prompt="%n@%m %1~ > " + +source ~/.config/.dg-shell.zsh diff --git a/make-links.sh b/make-links.sh index 06d0efe..6119572 100755 --- a/make-links.sh +++ b/make-links.sh @@ -19,4 +19,4 @@ ln -sf $PWD/.config/VSCodium/User/snippets ~/.config/VSCodium/User/snippets # Link for dg-shell ln -sf $PWD/.config/.dg-shell.zsh ~/.config/.dg-shell.zsh -echo -e "\n\nsource ~/.config/.dg-shell.zsh" >> ~/.zshrc +ln -sf $PWD/.zshrc ~/.zshrc