Move zsh config to .config
This commit is contained in:
parent
8d52d03f32
commit
b53f7f6290
|
@ -1,4 +1,4 @@
|
|||
source ~/.lcaol/share/shell/functions
|
||||
source ~/.local/share/shell/functions
|
||||
|
||||
# ls aliases
|
||||
|
||||
|
|
|
@ -1,17 +0,0 @@
|
|||
systemProp.org.gradle.internal.http.connectionTimeout=150000
|
||||
systemProp.org.gradle.internal.http.socketTimeout=150000
|
||||
|
||||
# Specifies the JVM arguments used for the daemon process.
|
||||
# The setting is particularly useful for tweaking memory settings.
|
||||
# Default value: -Xmx10248m -XX:MaxPermSize=256m
|
||||
org.gradle.jvmargs=-mx2G -XX:MaxPermSize=512M -XX:+HeapDumpOnOutOfMemoryError -Dfile.encoding=UTF-8
|
||||
|
||||
# When configured, Gradle will run in incubating parallel mode.
|
||||
# This option should only be used with decoupled projects. More details, visit
|
||||
# http://www.gradle.org/docs/current/userguide/multi_project_builds.html#sec:decoupled_projects
|
||||
org.gradle.parallel=true
|
||||
|
||||
# Enables new incubating mode that makes Gradle selective when configuring projects.
|
||||
# Only relevant projects are configured which results in faster builds for large multi-projects.
|
||||
# http://www.gradle.org/docs/current/userguide/multi_project_builds.html#sec:configuration_on_demand
|
||||
org.gradle.configureondemand=true
|
|
@ -0,0 +1 @@
|
|||
../Dropbox/tools/setup/gradle.properties
|
|
@ -1,12 +1,17 @@
|
|||
# Shell configuration for Zsh, works almost completely for Bash as well
|
||||
|
||||
export LESS=-R
|
||||
export LC_MESSAGES=C
|
||||
|
||||
export DIST=$(lsb_release --id | cut -d' ' -f2)
|
||||
|
||||
#export PASSWORD_STORE_DIR=~/.local/share/pass
|
||||
|
||||
# Some aliases
|
||||
alias println='printf "\n"'
|
||||
|
||||
alias editgrub='sudo nvim /etc/default/grub && sudo update-grub'
|
||||
alias editgrub='sudoedit /etc/default/grub && sudo update-grub'
|
||||
alias editenv='sudoedit /etc/environment'
|
||||
|
||||
alias startMinecraftServer='curl https://ipinfo.io/ip | xclip -sel clip && cd ~/daten/games/sharedgames/minecraft/server && java -jar forge-1.12.2-14.23.5.2768-universal.jar -mx 8G'
|
||||
|
||||
|
@ -336,7 +341,7 @@ if test "$BASH_VERSION"
|
|||
then _clean_map=([m]=~/.mozilla [c]=~/.cache)
|
||||
else _clean_map=(m ~/.mozilla c ~/.cache)
|
||||
fi
|
||||
_clean_folders=(~/.oracle_jre_usage ~/.gradle-kotlin-dsl ~/.thumbnails ~/.zcompdump*)
|
||||
_clean_folders=(~/.oracle_jre_usage ~/.gradle-kotlin-dsl ~/.thumbnails $ZDOTDIR/.zcompdump*)
|
||||
clean() {
|
||||
|
||||
for f in $_clean_folders
|
||||
|
|
|
@ -0,0 +1,6 @@
|
|||
export XDG_DATA_DIRS="$HOME/.local/xdg:$XDG_DATA_DIRS"
|
||||
export KDEHOME="$HOME/.local/share/kdehome"
|
||||
export PASSWORD_STORE_DIR="$HOME/.local/share/pass"
|
||||
export ZDOTDIR="$HOME/.config/zsh"
|
||||
export _Z_DATA="$HOME/.config/zsh/z"
|
||||
export EDITOR=/usr/bin/nvim
|
Loading…
Reference in New Issue