fix directory structure

This commit is contained in:
ChrisTitusTech 2020-06-01 11:30:25 -05:00
parent b0532b9040
commit 60cb0f2f21
4 changed files with 7 additions and 8 deletions

4
.gitmodules vendored

@ -1,3 +1,3 @@
[submodule ".zsh/pure"]
path = .zsh/pure
[submodule "pure"]
path = pure
url = https://github.com/sindresorhus/pure.git

10
.zshrc

@ -5,8 +5,8 @@
# Initial Setup
# mkdir -p "$HOME/zsh/.zsh"
# git submodule add https://github.com/sindresorhus/pure.git "$HOME/zsh/.zsh/pure"
# Setup Alias in $HOME/zsh/.zsh/aliasrc
# git submodule add https://github.com/sindresorhus/pure.git "$HOME/zsh/pure"
# Setup Alias in $HOME/zsh/aliasrc
# Enable colors and change prompt:
autoload -U colors && colors
@ -14,14 +14,14 @@ PS1="%B%{$fg[red]%}[%{$fg[yellow]%}%n%{$fg[green]%}@%{$fg[blue]%}%M %{$fg[magent
# Pure Prompt
fpath+=$HOME/zsh/.zsh/pure
fpath+=$HOME/zsh/pure
autoload -U promptinit; promptinit
prompt pure
# History in cache directory:
HISTSIZE=10000
SAVEHIST=10000
HISTFILE=~/.cache/zsh/history
HISTFILE=~/.cache/zshhistory
# Basic auto/tab complete:
autoload -U compinit
@ -34,7 +34,7 @@ _comp_options+=(globdots) # Include hidden files.
bindkey '^ ' autosuggest-accept
# Load aliases and shortcuts if existent.
[ -f "$HOME/zsh/.zsh/aliasrc" ] && source "$HOME/zsh/.zsh/aliasrc"
[ -f "$HOME/zsh/aliasrc" ] && source "$HOME/zsh/aliasrc"
# Load ; should be last.
source /usr/share/zsh/plugins/zsh-autosuggestions/zsh-autosuggestions.zsh 2>/dev/null

@ -76,7 +76,6 @@ alias cp='cp -i'
alias mv='mv -i'
alias vim='vim'
alias vi='vim'
alias nano='vim'
alias gds-start='sudo systemctl start openvpn-client@gds'
alias gds-stop='sudo systemctl stop openvpn-client@gds'