commit ac84b4d66281de8f334df7fc7848a9e3a880f9b3
Author: Ramon Asuncion <asuncionbatista@gmail.com>
Date: Thu, 25 Nov 2021 03:53:42 -0500
Add .gitconfig, README and .zshrc
Diffstat:
3 files changed, 71 insertions(+), 0 deletions(-)
diff --git a/.gitconfig b/.gitconfig
@@ -0,0 +1,32 @@
+# This is Git's per-user configuration file.
+[user]
+ name = "Ramon Asuncion"
+ username = "RamonAsuncion"
+ email = asuncionbatista@gmail.com
+
+[filter "lfs"]
+ process = git-lfs filter-process
+ required = true
+ clean = git-lfs clean -- %f
+ smudge = git-lfs smudge -- %f
+
+[core]
+ editor = micro
+
+[web]
+ browser = firefox
+
+[alias]
+ c = commit
+ cm = commit -m
+ cl = clone
+ d = diff
+ f = fetch
+ m = merge
+ o = checkout
+ ob = checkout -b
+ ps = push
+ pl = pull
+ rb = rebase
+ s = status
+
diff --git a/.zshrc b/.zshrc
@@ -0,0 +1,37 @@
+source ~/.bash_profile
+
+# Path to your oh-my-zsh installation.
+export ZSH="/Users/ramonasuncion/.oh-my-zsh"
+export TERM=xterm-256color
+
+# Set name of the theme to load --- if set to "random" to get random themes.
+ZSH_THEME="pointer"
+
+# Which plugins would you like to load?
+plugins=(
+ git
+ zsh-syntax-highlighting
+ zsh-autosuggestions
+ dotenv
+ autojump
+)
+
+source $ZSH/oh-my-zsh.sh
+
+# You may need to manually set your language environment
+export LANG=en_US.UTF-8
+
+# Preferred editor for local and remote sessions
+if [[ -n $SSH_CONNECTION ]]; then
+export EDITOR='micro'
+else
+export EDITOR='vim'
+fi
+
+
+# Aliases
+alias ls="ls -la --color=auto"
+alias tmuxreload="tmux source-file ~/.tmux.conf"
+alias bucknell.wtf="ssh ramon@bucknell.wtf"
+alias pi="ssh pi@134.82.137.7" # Raspberry Pi @ Bucknell.edu network
+alias zshreload="source ~/.zshrc"
diff --git a/README.md b/README.md
@@ -0,0 +1,2 @@
+# Dotfiles
+Currently working on a MacOS system.