Skip to content

Commit

Permalink
feat: zsh figlet, logo, nvim coc
Browse files Browse the repository at this point in the history
  • Loading branch information
tizee committed May 18, 2024
1 parent 23406cc commit 4699b77
Show file tree
Hide file tree
Showing 3 changed files with 12 additions and 13 deletions.
3 changes: 2 additions & 1 deletion nvim/coc-settings.json
Original file line number Diff line number Diff line change
Expand Up @@ -144,7 +144,8 @@
},
"sh.enable": true,
// javascript
"eslint.autoFixOnSave": true,
"eslint.enable": false,
"eslint.autoFixOnSave": false,
// snippets
"snippets.extends": {
"cpp": [
Expand Down
20 changes: 8 additions & 12 deletions zlogin
Original file line number Diff line number Diff line change
@@ -1,18 +1,14 @@
#!/usr/bin/env zsh

# show date
# date

# magicTmux message
# use ANSI shadow style logo
if [[ $PROLOGUE_LOGO ]]; then
echo "\033[94mHello, World!"
echo ' ___ ___ ___ ___ ___'
echo ' /\__\ /\ \ /\__\ /\ \ /\__\ '
echo ' /:/ _/_ _\:\ \ /:/ / _\:\ \ /:| _|_'
echo ' /::-"\__\ /\/::\__\ /:/__/ /\/::\__\ /::|/\__\'
echo ' \;:;-",-" \::/\/__/ \:\ \ \::/\/__/ \/|::/ /'
echo ' |:| | \:\__\ \:\__\ \:\__\ |:/ /'
echo ' \|__| \/__/ \/__/ \/__/ \/__/'
echo "\033[94m"
echo " ████████╗██╗███████╗███████╗███████╗ ███████╗███████╗██╗ ██╗"
echo " ╚══██╔══╝██║╚══███╔╝██╔════╝██╔════╝ ╚══███╔╝██╔════╝██║ ██║"
echo " ██║ ██║ ███╔╝ █████╗ █████╗ ███╔╝ ███████╗███████║"
echo " ██║ ██║ ███╔╝ ██╔══╝ ██╔══╝ ███╔╝ ╚════██║██╔══██║"
echo " ██║ ██║███████╗███████╗███████╗ ███████╗███████║██║ ██║"
echo " ╚═╝ ╚═╝╚══════╝╚══════╝╚══════╝ ╚══════╝╚══════╝╚═╝ ╚═╝"
echo "\033[m"
fi
if [[ $PROLOGUE_FORTUNE ]]; then
Expand Down
2 changes: 2 additions & 0 deletions zprofile
Original file line number Diff line number Diff line change
Expand Up @@ -501,4 +501,6 @@ if $is_macOS; then
eval "$(/opt/homebrew/bin/brew shellenv)"
# zig lang
export PATH="$HOME/project-zig/zig/build/stage3/bin:$PATH"
# figlet font
export FIGLET_FONTDIR="$HOME/projects/project-doc/figlet-fonts"
fi

0 comments on commit 4699b77

Please sign in to comment.