-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
dotfiles | Minor additions and orginization changes (#10)
* dotfiles | Minor additions and orginization changes * Fix typo * Add git submodules
- Loading branch information
1 parent
eb45a28
commit de72271
Showing
14 changed files
with
132 additions
and
74 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
# https://git-scm.com/docs/gitmodules | ||
[submodule ".oh-my-zsh"] | ||
path = .oh-my-zsh | ||
url = http://github.com/robbyrussell/oh-my-zsh.git | ||
[submodule ".vim/bundle/Vundle.vim"] | ||
path = .vim/bundle/Vundle.vim | ||
url = https://github.com/VundleVim/Vundle.vim.git |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1,11 @@ | ||
--- | ||
gem: --no-rdoc --no-ri | ||
--- | ||
gem: --no-ri --no-rdoc | ||
:verbose: false | ||
:backtrace: false | ||
:bulk_threshold: 1000 | ||
:update_sources: true | ||
:sources: | ||
- https://rubygems.org | ||
- https://gems.rubyforge.org |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -2,21 +2,22 @@ | |
# https://git-scm.com/docs/git-config | ||
; core variables | ||
[core] | ||
whitespace = trailing-space,space-before-tab | ||
editor = vim | ||
filemode = false | ||
whitespace = trailing-space,space-before-tab,cr-at-eol | ||
editor = vim | ||
filemode = false | ||
|
||
; template | ||
# git config --global init.templateDir ~/.git-template | ||
# pre-commit init-templatedir ~/.git-template | ||
[init] | ||
templatedir = "~/.git-template" | ||
templatedir = "~/.git-template" | ||
defaultBranch = main | ||
|
||
; color | ||
[color] | ||
ui = auto | ||
ui = auto | ||
showBranch = auto | ||
status = auto | ||
status = auto | ||
|
||
; Defaults | ||
[pull] | ||
|
@@ -36,6 +37,8 @@ | |
|
||
; Aliases | ||
[alias] | ||
br = branch | ||
co = checkout | ||
gconf = config --global -e | ||
hash = rev-parse HEAD | ||
ghist = log --pretty=format:'%C(dim cyan)%G?%C(reset) %C(yellow)%h%C(reset) - %C(green)(%cr)%C(reset) %C(bold white)%an%C(reset) %s %C(bold blue)%d%C(reset)' --graph --date-order --date=relative --abbrev-commit | ||
|
@@ -46,11 +49,15 @@ | |
|
||
; user | ||
[user] | ||
name = "[name]" | ||
email = [email protected] | ||
name = "full name" | ||
email = [email protected] | ||
username = "username" | ||
|
||
; credential | ||
# Cache credentials in memory for a short period of time | ||
[credential] | ||
#credential.helper=osxkeychain | ||
helper = cache --timeout 7200 | ||
|
||
# [url "[email protected]:"] | ||
# insteadOf = https://github.com/ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
#!/bin/zsh | ||
# shellcheck disable=all | ||
# https://github.com/spaceship-prompt/spaceship-prompt | ||
|
||
## Brew | ||
# Check for brew (Homebrew) | ||
if command -v brew 1>/dev/null 2>&1; then | ||
# Themes & Fonts | ||
brew install -sq spaceship # Theme, https://github.com/spaceship-prompt/spaceship-prompt | ||
brew install -sq font-hack-nerd-font # Fonts, https://github.com/ryanoasis/nerd-fonts | ||
fi |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -4,6 +4,7 @@ | |
# https://code.visualstudio.com/download | ||
# https://code.visualstudio.com/docs/setup/mac | ||
|
||
## Settings, .zprofile | ||
# Adding Visual Studio Code (code) to .zprofile | ||
typeset -r ZPROFILE="${HOME}/.zprofile" | ||
typeset -r vscode_app_path='/Applications/Visual Studio Code.app/Contents/Resources/app/bin' | ||
|
@@ -16,6 +17,7 @@ EOF | |
source "${ZPROFILE}" | ||
fi | ||
|
||
## Extensions | ||
# code --list-extensions | ||
# code --install-extension [email protected] | ||
# @installed | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.