1
0
mirror of https://github.com/drewcassidy/dotfiles synced 2024-09-01 18:24:06 +00:00

Compare commits

..

1 Commits

Author SHA1 Message Date
dcf9a7a2a7 Linux-specific stuff 2020-10-18 01:31:18 +00:00
4 changed files with 45 additions and 72 deletions

1
.gitignore vendored
View File

@ -1 +0,0 @@
fish/.config/fish/fish_variables

10
.zshrc
View File

@ -4,11 +4,9 @@ export PATH="$PATH:$HOME/.rvm/bin" # Add RVM to PATH for scripting
export PATH="$PATH:$HOME/Scripts"
export PKG_CONFIG_PATH="/Library/Frameworks/Mono.framework/Versions/4.6.2/lib/pkgconfig":$PKG_CONFIG_PATH
# setup completion
autoload -Uz compinit
compinit
# added by travis gem
[ -f /Users/drewcassidy/.travis/travis.sh ] && source /Users/drewcassidy/.travis/travis.sh
# setup histfile
HISTFILE=~/.histfile
HISTSIZE=1000
SAVEHIST=1000
@ -17,7 +15,7 @@ unsetopt nomatch
bindkey -e
# colorize commands
alias ls='ls -G'
# alias ls='ls -G'
alias grep='grep --color=auto'
alias fgrep='fgrep --color=auto'
@ -26,3 +24,5 @@ alias egrep='egrep --color=auto'
export GCC_COLORS='error=01;31:warning=01;35:note=01;36:caret=01;32:locus=01:quote=01'
export CLICOLOR=1
export LSCOLORS='ExcxdxfxgxxexcxdxfBxBx'
eval $(/usr/libexec/path_helper -s)

View File

@ -1,67 +1,41 @@
set -gxa PATH /usr/local/opt/curl/bin
set -gxa PATH /usr/local/opt/ruby/bin
set -gxa PATH /usr/local/opt/openssl/bin
set -gxa PATH /usr/local/opt/qt/bin
set -gxa PATH /usr/local/opt/llvm/bin
set -gxa PATH /opt/local/bin /opt/local/sbin
set -gxa PATH /usr/local/bin /usr/local/sbin
set -gxa PATH ~/.dotnet/tools
set -gxa PATH ~/Library/Python/2.7/bin
set -gxa PATH ~/Library/Python/3.8/bin
set -gxa PATH ~/.gem/ruby/2.7.0/bin
# setup location variables
set FISH_PATH $HOME/.config/fish
set FLINE_PATH $FISH_PATH/fishline
if status is-interactive
# setup location variables
set FISH_PATH "$HOME/.config/fish"
set FLINE_PATH "$FISH_PATH/fishline"
set -gx PATH ~/.rvm/bin $PATH
set -gx XDG_CONFIG_HOME "$HOME/.config"
# setup FishLine
source $FLINE_PATH/init.fish
source $FISH_PATH/fishline_colors.fish
set FLCLR_USER_BG yellow
set FLCLR_USER_FG black
# setup colors
set -gx GCC_COLORS 'error=01;31:warning=01;35:note=01;36:caret=01;32:locus=01:quote=01'
set -gx CLICOLOR 1
set -gx LSCOLORS 'di=1;34:ln=32:so=33:pi=35:ex=36:bd=0;44:cd=0;42:su=0;43:sg=0;45:tw=1;31:ow=1;31'
set fish_color_autosuggestion 'brblack'
set fish_color_cancel -r
set fish_color_command --bold
set fish_color_comment red
set fish_color_cwd green
set fish_color_cwd_root red
set fish_color_end brmagenta
set fish_color_error brred
set fish_color_escape 'bryellow' '--bold'
set fish_color_history_current --bold
set fish_color_host normal
set fish_color_match --background=brblue
set fish_color_normal normal
set fish_color_operator bryellow
set fish_color_param cyan
set fish_color_quote yellow
set fish_color_redirection brblue
set fish_color_search_match 'bryellow' '--background=brblack'
set fish_color_selection 'white' '--bold' '--background=brblack'
set fish_color_user brgreen
set fish_color_valid_path --underline
set -gx HOMEBREW_NO_AUTO_UPDATE 1
set -gx PKG_CONFIG_PATH /usr/local/opt/openssl/lib/pkgconfig $PKG_CONFIG_PATH
set -gx PKG_CONFIG_PATH /usr/local/opt/libffi/lib/pkgconfig $PKG_CONFIG_PATH
set -gx LDFLAGS -L/usr/local/opt/gettext/lib $LDFLAGS
set -gx CPPFLAGS -I/usr/local/opt/gettext/include $CPPFLAGS
set -gx LDFLAGS -L/usr/local/opt/llvm/lib $LDFLAGS
set -gx CPPFLAGS -I/usr/local/opt/llvm/include $CPPFLAGS
set -gx GOPATH $HOME/Scripts/go
set -gx MONO_GAC_PREFIX /usr/local
# setup FishLine
source $FLINE_PATH/init.fish
source $FISH_PATH/fishline_colors.fish
set FLCLR_USER_BG blue
set FLCLR_USER_FG white
# setup colors
set -gx GCC_COLORS 'error=01;31:warning=01;35:note=01;36:caret=01;32:locus=01:quote=01'
set -gx CLICOLOR 1
set -gx LSCOLORS 'ExcxdxfxgxxexcxdxfBxBx'
set fish_color_autosuggestion 'brblack'
set fish_color_cancel -r
set fish_color_command --bold
set fish_color_comment red
set fish_color_cwd green
set fish_color_cwd_root red
set fish_color_end brmagenta
set fish_color_error brred
set fish_color_escape 'bryellow' '--bold'
set fish_color_history_current --bold
set fish_color_host normal
set fish_color_match --background=brblue
set fish_color_normal normal
set fish_color_operator bryellow
set fish_color_param cyan
set fish_color_quote yellow
set fish_color_redirection brblue
set fish_color_search_match 'bryellow' '--background=brblack'
set fish_color_selection 'white' '--bold' '--background=brblack'
set fish_color_user brgreen
set fish_color_valid_path --underline
end