even more changes
This commit is contained in:
parent
7935ec2ef6
commit
cb62f96109
10 changed files with 29 additions and 21 deletions
|
@ -1,13 +1,16 @@
|
|||
# Export with respect to dotfiles folder
|
||||
export DOTFILES="${HOME}/dotfiles"
|
||||
export LIB="${DOTFILES}/lib"
|
||||
export CONFIG="${DOTFILES}/config"
|
||||
export ZSHRCD="${CONFIG}/zsh/zshrc.d"
|
||||
export SEPARATE="${ZSHRCD}/separate"
|
||||
export PATH="${HOME}/dotfiles/bin:/opt/android-sdk/build-tools/26.0.0/:${PATH}"
|
||||
export EDITOR='nano'
|
||||
fpath+=(${LIB}/completions/src ${LIB}/local)
|
||||
export DOTFILES="${HOME}/dotfiles" # Main Dotfile Folder
|
||||
export DOTF_LIB="${DOTFILES}/lib" # Libraries Folder
|
||||
export DOTF_BIN="${DOTFILES}/bin" # Binaries Folder
|
||||
export DOTF_CONF="${DOTFILES}/config" # Config Folder
|
||||
export ZSHRCD="${DOTF_CONF}/zsh/zshrc.d" # ZSHRC.D Folder
|
||||
|
||||
# Source the needed parts
|
||||
for file in ${ZSHRCD}/*.zsh; do source $file; done # Other Files
|
||||
source ${HOME}/.fzf.zsh # FZF
|
||||
# Export Path
|
||||
export PATH="${HOME}/dotfiles/bin:/opt/android-sdk/build-tools/26.0.0/:${HOME}/.fzf/bin:${PATH}"
|
||||
|
||||
# Export Editor
|
||||
export EDITOR='nano'
|
||||
|
||||
# Completions Paths
|
||||
fpath+=(${DOTF_LIB}/completions/src ${DOTF_LIB}/local)
|
||||
|
||||
for file in ${ZSHRCD}/*.zsh; do source $file; done
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue