File tree Expand file tree Collapse file tree 3 files changed +9
-39
lines changed
Expand file tree Collapse file tree 3 files changed +9
-39
lines changed Original file line number Diff line number Diff line change @@ -15,6 +15,10 @@ if [ -f ~/.bash_functions ]; then
1515 . ~ /.bash_functions
1616fi
1717
18+ # Aliases
19+ source ~ /.alias
20+
21+ # Completions
1822case " ${OSTYPE} " in
1923 darwin* )
2024 # All Bash Completions
@@ -29,7 +33,7 @@ case "${OSTYPE}" in
2933esac
3034
3135# -----------------------------------------------------------------------------------------------
32- # USER SPECIFIC
36+ # PROMPT
3337
3438# Starship Prompt
3539eval " $( starship init bash) "
@@ -43,40 +47,5 @@ HISTFILESIZE=99999999
4347HISTCONTROL=ignoreboth # both ignorespace and ignoredups
4448HISTTIMEFORMAT=" [%m/%d/%y %T] " # timestamp format
4549
46- # - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
47- # ALIASES
48- case " ${OSTYPE} " in
49- darwin* )
50- alias ls=" ls -GFh"
51- alias ll=" ls -laGFh"
52- ;;
53- linux* )
54- alias ls=" ls -GFh --color=yes"
55- alias ll=" ls -GFhla --color=yes"
56- ;;
57- esac
58-
59- alias cp=" cp -i"
60- alias rm=" rm -i"
61- alias mv=" mv -i"
62- alias vi=" vim"
63-
64- # Beautify $PATH
65- alias path=' echo $PATH | tr -s ":" "\n"'
66-
67- # Git
68- alias gs=" git status"
69- alias gc=" git commit"
70-
71- # Remote Access
72- alias mini=" "
73- alias server=" "
74- alias macbook=" "
75- alias bretonics=" "
76- alias node0=" "
77- alias node1=" "
78- alias node2=" "
79- alias node3=" "
80-
8150# -------------------------------------------------------------------------------
82- # GLOBAL
51+ # OTHER
Original file line number Diff line number Diff line change @@ -16,6 +16,7 @@ alias vi="vim"
1616
1717# Beautify $PATH
1818alias path='echo $PATH | tr -s ":" "\n"'
19+ alias path='echo $FPATH | tr -s ":" "\n"'
1920
2021# Git
2122alias gs="git status"
Original file line number Diff line number Diff line change 22# ZSH
33
44# Oh My Zsh Installation
5- if [ -d " /Users/ ${USER } /.oh-my-zsh" ]; then
6- source " /Users/ ${USER } /.omzsh"
5+ if [ -d " ${HOME } /.oh-my-zsh" ]; then
6+ source " ${HOME } /.omzsh"
77 unset LESS
88fi
99
You can’t perform that action at this time.
0 commit comments