mirror of
https://github.com/jakejarvis/dotfiles.git
synced 2025-04-26 03:45:21 -04:00
updates
This commit is contained in:
parent
5c2f0fc52e
commit
9cda618e8d
@ -185,6 +185,9 @@ user_pref("geo.wifi.logging.enabled", false);
|
|||||||
user_pref("geo.wifi.uri", "");
|
user_pref("geo.wifi.uri", "");
|
||||||
|
|
||||||
|
|
||||||
|
user_pref("gfx.font_rendering.opentype_svg.enabled", false);
|
||||||
|
|
||||||
|
|
||||||
user_pref("intl.accept_languages", "en-US, en");
|
user_pref("intl.accept_languages", "en-US, en");
|
||||||
user_pref("intl.locale.matchOS", false);
|
user_pref("intl.locale.matchOS", false);
|
||||||
|
|
||||||
|
@ -5,7 +5,7 @@
|
|||||||
name = Jake Jarvis
|
name = Jake Jarvis
|
||||||
signingkey = 2B0C9CF251E69A39
|
signingkey = 2B0C9CF251E69A39
|
||||||
[gpg]
|
[gpg]
|
||||||
program = /usr/local/bin/gpg
|
program = /usr/local/MacGPG2/bin/gpg
|
||||||
[commit]
|
[commit]
|
||||||
gpgsign = true
|
gpgsign = true
|
||||||
[push]
|
[push]
|
||||||
|
@ -190,8 +190,9 @@ defaults write com.apple.finder FXInfoPanesExpanded -dict \
|
|||||||
# Show indicator lights for open applications in the Dock
|
# Show indicator lights for open applications in the Dock
|
||||||
defaults write com.apple.dock show-process-indicators -bool true
|
defaults write com.apple.dock show-process-indicators -bool true
|
||||||
|
|
||||||
# Automatically hide and show the Dock
|
# Automatically hide and show the Dock without delay
|
||||||
defaults write com.apple.dock autohide -bool true
|
defaults write com.apple.dock autohide -bool true
|
||||||
|
defaults write com.apple.dock autohide-delay -float 0
|
||||||
|
|
||||||
# Group windows by application in Mission Control
|
# Group windows by application in Mission Control
|
||||||
defaults write com.apple.dock expose-group-by-app -bool true
|
defaults write com.apple.dock expose-group-by-app -bool true
|
||||||
|
@ -67,6 +67,7 @@ alias gpom="git push origin master"
|
|||||||
alias glom="git pull origin master"
|
alias glom="git pull origin master"
|
||||||
alias gpo="git push origin" # + branch name
|
alias gpo="git push origin" # + branch name
|
||||||
alias glo="git pull origin" # + branch name
|
alias glo="git pull origin" # + branch name
|
||||||
|
alias gphm="git push hosted master" # self-hosted gitlab
|
||||||
alias gb="git checkout" # + branch name
|
alias gb="git checkout" # + branch name
|
||||||
alias gbn="git checkout -b" # + branch name
|
alias gbn="git checkout -b" # + branch name
|
||||||
alias grm="git rebase -i origin/master"
|
alias grm="git rebase -i origin/master"
|
||||||
|
@ -8,7 +8,10 @@ export PATH="$PATH:$GOPATH/bin"
|
|||||||
export PATH="$PATH:$GOROOT/bin"
|
export PATH="$PATH:$GOROOT/bin"
|
||||||
|
|
||||||
# Ruby
|
# Ruby
|
||||||
export PATH="/usr/local/opt/ruby/bin:$PATH"
|
export RUBY_HOME=/usr/local/opt/ruby/bin
|
||||||
|
export GEM_PATH=~/.gem/ruby/2.6.0
|
||||||
|
export PATH="$RUBY_HOME:$PATH"
|
||||||
|
export PATH="$GEM_PATH/bin:$PATH"
|
||||||
|
|
||||||
# Metasploit
|
# Metasploit
|
||||||
export PATH="/opt/metasploit-framework/bin:$PATH"
|
export PATH="/opt/metasploit-framework/bin:$PATH"
|
||||||
@ -19,6 +22,9 @@ export PATH="/usr/local/opt/curl/bin:$PATH"
|
|||||||
# Rust/Cargo
|
# Rust/Cargo
|
||||||
export PATH="$HOME/.cargo/bin:$PATH"
|
export PATH="$HOME/.cargo/bin:$PATH"
|
||||||
|
|
||||||
|
# yarn
|
||||||
|
export PATH="$HOME/.yarn/bin:$HOME/.config/yarn/global/node_modules/.bin:$PATH"
|
||||||
|
|
||||||
|
|
||||||
# ----- Third-party additions below: -----
|
# ----- Third-party additions below: -----
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user