Compare commits

...

6 Commits

2 changed files with 18 additions and 7 deletions

View File

@ -41,6 +41,12 @@ function install_shfmt() {
GO111MODULE=on go install mvdan.cc/sh/v3/cmd/shfmt@latest
}
function install_shellcheck() {
# Install shellcheck
[[ "$(uname)" == "Darwin" ]] && brew install shellcheck
emerge shellcheck
}
function install_gopls() {
# Install gopls
GO111MODULE=on go install golang.org/x/tools/gopls@latest
@ -69,6 +75,7 @@ function main() {
command_start install_yaml-language-server
command_start install_ansible-language-server
command_start install_shfmt
command_start install_shellcheck
command_start install_gopls
command_start install_black
command_start install_ansible

18
.zshrc
View File

@ -22,7 +22,7 @@ gbranch() {
[[ "$(uname)" == "Darwin" ]] && export ZSH="$HOME/.oh-my-zsh"
HISTFILE=$HOME/.history_zsh
HISTSIZE=10000
HISTSIZE=10000000
SAVEHIST=10000000
autoload -U colors && colors
setopt PROMPT_SUBST
@ -121,9 +121,6 @@ alias rsync="rsync --progress"
export PATH=$HOME/.local/bin:$PATH
export PATH=/sbin:$PATH
export GOPATH=$HOME/golang
export GOROOT=/usr/lib/go
export PATH=$PATH:$GOPATH/bin
export PATH=$PATH:$GOROOT/bin
export PATH=$PATH:$HOME/.gem/ruby/2.6.0/bin
[ -d $HOME/repo/fortigate/bin ] && export PATH=$HOME/repo/fortigate/bin:$PATH
export HISTTIMEFORMAT="%F %T "
@ -141,14 +138,21 @@ if [[ "$(uname)" == "Darwin" ]]; then
# Other export
export PATH="/usr/local/opt/openssl@3/bin:$PATH"
export PATH=$PATH:$HOME/Library/Python/3.9/bin
export PATH=$PATH:/usr/local/opt/python@3.9/Frameworks/Python.framework/Versions/3.9/bin
export PATH="/opt/homebrew/bin:$PATH"
export PATH=$PATH:$HOME/Library/Python/3.10/bin
export PATH=$PATH:/usr/local/opt/python@3.10/Frameworks/Python.framework/Versions/3.10/bin
export LDFLAGS="-L/usr/local/opt/openssl@3/lib"
export CPPFLAGS="-I/usr/local/opt/openssl@3/include"
export PKG_CONFIG_PATH="/usr/local/opt/openssl@3/lib/pkgconfig"
export GOROOT="$(brew --prefix golang)/libexec"
export PATH=$PATH:$GOPATH/bin
export PATH=$PATH:$GOROOT/bin
alias python3='/opt/homebrew/bin/python3.10'
alias pip3='/opt/homebrew/bin/pip3.10'
alias lsblk="diskutil list"
alias Update="brew update; brew upgrade"
alias Update="~/.config/nvim/installer.sh; brew update; brew upgrade"
alias ls="ls -Gh"
alias mpv="mpv --no-resume-playback"
alias code="open -a 'Visual Studio Code'"