mirror of
https://github.com/ViViDboarder/shoestrap.git
synced 2024-11-01 02:16:29 +00:00
10 lines
339 B
Fish
10 lines
339 B
Fish
# Increase memory sizes for java using Ant
|
|
set -gx ANT_OPTS "-Xmx2048m -Xms512m"
|
|
|
|
# FZF
|
|
set -gx FZF_DEFAULT_COMMAND 'ag -g ""'
|
|
set -gx FZF_CTRL_T_COMMAND "$FZF_DEFAULT_COMMAND \$dir"
|
|
|
|
# Vim Colors so that they can be set by env
|
|
set -q VIM_COLOR; set -gx VIM_COLOR (eval $HOME/bin/get_vim_colorscheme.sh); or set -gx VIM_COLOR wombat256mod
|