Update dotfiles
This commit is contained in:
parent
30d6d36e9c
commit
d40acd2516
3
.aliases
3
.aliases
|
@ -1,3 +1,6 @@
|
||||||
alias mkdir='mkdir -p'
|
alias mkdir='mkdir -p'
|
||||||
alias cat='bat'
|
alias cat='bat'
|
||||||
alias config='/usr/bin/git --git-dir=$HOME/.dotfiles/ --work-tree=$HOME'
|
alias config='/usr/bin/git --git-dir=$HOME/.dotfiles/ --work-tree=$HOME'
|
||||||
|
alias doco='docker-compose'
|
||||||
|
alias clear='[ $[$RANDOM % 10] = 0 ] && sl; clear || clear'
|
||||||
|
alias update='sudo apt-get update && sudo apt-get upgrade && sudo apt-get dist-upgrade'
|
||||||
|
|
|
@ -1 +1,2 @@
|
||||||
set selectmode=cmd
|
set selectmode=cmd
|
||||||
|
set mouse-=a
|
||||||
|
|
6
.zshrc
6
.zshrc
|
@ -4,6 +4,12 @@ source $HOME/.aliases
|
||||||
# Set $PATH
|
# Set $PATH
|
||||||
export PATH=$HOME/bin:$PATH
|
export PATH=$HOME/bin:$PATH
|
||||||
|
|
||||||
|
# Set Golang
|
||||||
|
export PATH=$PATH:/usr/local/go/bin
|
||||||
|
export GOPATH=$HOME/Projects/golang/lib
|
||||||
|
export PATH=$PATH:$GOPATH/bin
|
||||||
|
export GOPATH=$GOPATH:$HOME/Projects/golang/code
|
||||||
|
|
||||||
# Load the oh-my-zsh's library.
|
# Load the oh-my-zsh's library.
|
||||||
antigen use oh-my-zsh
|
antigen use oh-my-zsh
|
||||||
|
|
||||||
|
|
|
@ -2,6 +2,6 @@
|
||||||
|
|
||||||
left=DP-1-2-2
|
left=DP-1-2-2
|
||||||
middle=DP-1-2-3
|
middle=DP-1-2-3
|
||||||
right=eDP-1
|
right=eDP-1-1
|
||||||
|
|
||||||
xrandr --output "$middle" --auto --primary && xrandr --output "$left" --auto --left-of "$middle" && xrandr --output "$right" --auto --right-of "$middle"
|
xrandr --output "$middle" --auto --primary && xrandr --output "$left" --auto --left-of "$middle" && xrandr --output "$right" --auto --right-of "$middle"
|
||||||
|
|
Loading…
Reference in New Issue