mirror of
https://github.com/ViViDboarder/shoestrap.git
synced 2024-11-22 14:16:32 +00:00
15 lines
472 B
Fish
15 lines
472 B
Fish
# XDG Spec
|
|
set -gx XDG_CONFIG_HOME "$HOME/.config"
|
|
set -gx XDG_DATA_HOME "$HOME/.local/share"
|
|
set -gx XDG_CACHE_HOME "$HOME/.cache"
|
|
|
|
# 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
|