mirror of
https://github.com/m-housh/dotfiles.git
synced 2026-02-14 22:22:40 +00:00
Added some git config
This commit is contained in:
2
.gitignore
vendored
Normal file
2
.gitignore
vendored
Normal file
@@ -0,0 +1,2 @@
|
|||||||
|
**/.DS_Store
|
||||||
|
**/Brewfile.lock.json
|
||||||
10
Makefile
10
Makefile
@@ -1,12 +1,15 @@
|
|||||||
install-brews:
|
bootstrap-homebrew:
|
||||||
|
xcode-select --install | true
|
||||||
/bin/bash -c "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/HEAD/install.sh)"
|
/bin/bash -c "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/HEAD/install.sh)"
|
||||||
|
|
||||||
|
bootsrap-brews:
|
||||||
@brew bundle \
|
@brew bundle \
|
||||||
--no-lock \
|
--no-lock \
|
||||||
--cleanup \
|
--cleanup \
|
||||||
--debug \
|
--debug \
|
||||||
--file "$(PWD)/macOS/.config/macOS/Brewfile"
|
--file "$(PWD)/macOS/.config/macOS/Brewfile"
|
||||||
|
|
||||||
install-apps:
|
bootstrap-app-store:
|
||||||
@brew bundle \
|
@brew bundle \
|
||||||
--no-lock \
|
--no-lock \
|
||||||
--cleanup \
|
--cleanup \
|
||||||
@@ -16,4 +19,5 @@ install-apps:
|
|||||||
stow:
|
stow:
|
||||||
@stow --stow --verbose --target ~ */
|
@stow --stow --verbose --target ~ */
|
||||||
|
|
||||||
fresh-install: install-brews stow install-apps
|
# Order matters, need to install home-brew first then formula
|
||||||
|
bootstrap: bootstrap-homebrew bootstrap-brews stow bootstrap-app-store
|
||||||
|
|||||||
37
git/.config/git/gitignore
Normal file
37
git/.config/git/gitignore
Normal file
@@ -0,0 +1,37 @@
|
|||||||
|
# Compiled source #
|
||||||
|
###################
|
||||||
|
*.com
|
||||||
|
*.class
|
||||||
|
*.dll
|
||||||
|
*.exe
|
||||||
|
*.o
|
||||||
|
*.so
|
||||||
|
|
||||||
|
# Packages #
|
||||||
|
############
|
||||||
|
# it's better to unpack these files and commit the raw source
|
||||||
|
# git has its own built in compression methods
|
||||||
|
*.7z
|
||||||
|
*.dmg
|
||||||
|
*.gz
|
||||||
|
*.iso
|
||||||
|
*.jar
|
||||||
|
*.rar
|
||||||
|
*.tar
|
||||||
|
*.zip
|
||||||
|
|
||||||
|
# Logs and databases #
|
||||||
|
######################
|
||||||
|
*.log
|
||||||
|
*.sql
|
||||||
|
*.sqlite
|
||||||
|
|
||||||
|
# OS generated files #
|
||||||
|
######################
|
||||||
|
.DS_Store
|
||||||
|
.DS_Store?
|
||||||
|
._*
|
||||||
|
.Spotlight-V100
|
||||||
|
.Trashes
|
||||||
|
ehthumbs.db
|
||||||
|
Thumbs.db
|
||||||
@@ -1,3 +1,6 @@
|
|||||||
|
[core]
|
||||||
|
excludesfile = ~/.config/git/gitignore
|
||||||
|
|
||||||
[user]
|
[user]
|
||||||
name = Michael Housh
|
name = Michael Housh
|
||||||
email = mhoush@houshhomeenergy.com
|
email = mhoush@houshhomeenergy.com
|
||||||
|
|||||||
@@ -1,4 +1,5 @@
|
|||||||
tap "homebrew/cask"
|
tap "homebrew/cask"
|
||||||
|
tap "homebrew/cask-fonts"
|
||||||
|
|
||||||
# TODO: Make the application directory a global variable ??
|
# TODO: Make the application directory a global variable ??
|
||||||
# set arguments for all 'brew install --cask' commands
|
# set arguments for all 'brew install --cask' commands
|
||||||
@@ -11,6 +12,7 @@ brew "mas"
|
|||||||
brew "neovim"
|
brew "neovim"
|
||||||
brew "ripgrep"
|
brew "ripgrep"
|
||||||
brew "stow"
|
brew "stow"
|
||||||
|
brew "swift-format"
|
||||||
brew "zsh"
|
brew "zsh"
|
||||||
|
|
||||||
# casks
|
# casks
|
||||||
@@ -19,3 +21,6 @@ cask "google-chrome"
|
|||||||
cask "iterm2"
|
cask "iterm2"
|
||||||
cask "paw"
|
cask "paw"
|
||||||
#cask "sketchup-pro"
|
#cask "sketchup-pro"
|
||||||
|
|
||||||
|
# fonts
|
||||||
|
cask "font-inconsolata-nerd-font"
|
||||||
|
|||||||
@@ -19,3 +19,5 @@ zsh_add_file "zsh-aliases"
|
|||||||
zsh_add_file "zsh-zinit"
|
zsh_add_file "zsh-zinit"
|
||||||
|
|
||||||
export EDITOR="nvim"
|
export EDITOR="nvim"
|
||||||
|
|
||||||
|
cat < "$ZDOTDIR/banner"
|
||||||
|
|||||||
10
zsh/.config/zsh/banner
Normal file
10
zsh/.config/zsh/banner
Normal file
@@ -0,0 +1,10 @@
|
|||||||
|
|
||||||
|
|
||||||
|
_ _
|
||||||
|
_ __ ___ | |__ ___ _ _ ___ | |__
|
||||||
|
| '_ ` _ \ _____ | '_ \ / _ \ | | | |/ __|| '_ \
|
||||||
|
| | | | | ||_____|| | | || (_) || |_| |\__ \| | | |
|
||||||
|
|_| |_| |_| |_| |_| \___/ \__,_||___/|_| |_|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
Reference in New Issue
Block a user