mirror of
https://github.com/m-housh/dotfiles.git
synced 2026-02-14 22:22:40 +00:00
Moved cask installation to it's own command.
This commit is contained in:
2
.gitignore
vendored
2
.gitignore
vendored
@@ -1,8 +1,10 @@
|
|||||||
**/.DS_Store
|
**/.DS_Store
|
||||||
**/Brewfile.lock.json
|
**/Brewfile.lock.json
|
||||||
**/plugins
|
**/plugins
|
||||||
|
**/plugin
|
||||||
**/.zcompdump*
|
**/.zcompdump*
|
||||||
**/.zcompdump
|
**/.zcompdump
|
||||||
**/.zcompcache
|
**/.zcompcache
|
||||||
zsh/.config/zsh/history
|
zsh/.config/zsh/history
|
||||||
**/.zsh_history
|
**/.zsh_history
|
||||||
|
**/.zsh_sessions
|
||||||
|
|||||||
11
Makefile
11
Makefile
@@ -1,15 +1,22 @@
|
|||||||
bootstrap-homebrew:
|
bootstrap-homebrew:
|
||||||
xcode-select --install | true
|
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)"
|
||||||
chmod -R go-w $(brew --prefix)/share
|
chmod -R go-w $(brew --prefix)
|
||||||
|
|
||||||
bootsrap-brews:
|
bootstrap-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"
|
||||||
|
|
||||||
|
bootstrap-casks:
|
||||||
|
@brew bundle \
|
||||||
|
--no-lock \
|
||||||
|
--cleanup \
|
||||||
|
--debug \
|
||||||
|
--file "$(PWD)/macOS/.config/macOS/Casks.Brewfile"
|
||||||
|
|
||||||
bootstrap-logitech:
|
bootstrap-logitech:
|
||||||
@curl \
|
@curl \
|
||||||
--output ~/Downloads/logi-options.zip \
|
--output ~/Downloads/logi-options.zip \
|
||||||
|
|||||||
@@ -17,14 +17,5 @@ brew "swift-format"
|
|||||||
brew "zsh"
|
brew "zsh"
|
||||||
brew "zsh-completions"
|
brew "zsh-completions"
|
||||||
|
|
||||||
# casks
|
|
||||||
cask "docker"
|
|
||||||
cask "google-chrome"
|
|
||||||
cask "iterm2"
|
|
||||||
cask "microsoft-teams"
|
|
||||||
cask "obs"
|
|
||||||
cask "paw"
|
|
||||||
cask "sketchup-pro"
|
|
||||||
|
|
||||||
# fonts
|
# fonts
|
||||||
cask "font-inconsolata-nerd-font"
|
cask "font-inconsolata-nerd-font"
|
||||||
|
|||||||
11
macOS/.config/macOS/Casks.Brewfile
Normal file
11
macOS/.config/macOS/Casks.Brewfile
Normal file
@@ -0,0 +1,11 @@
|
|||||||
|
tap "homebrew/cask"
|
||||||
|
|
||||||
|
# casks
|
||||||
|
cask "docker"
|
||||||
|
cask "google-chrome"
|
||||||
|
cask "iterm2"
|
||||||
|
cask "microsoft-teams"
|
||||||
|
cask "obs"
|
||||||
|
cask "paw"
|
||||||
|
cask "sketchup-pro"
|
||||||
|
|
||||||
2802
vim/.vim/autoload/plug.vim
Normal file
2802
vim/.vim/autoload/plug.vim
Normal file
File diff suppressed because it is too large
Load Diff
@@ -1,8 +1,4 @@
|
|||||||
|
|
||||||
# configure keeping history of commands
|
|
||||||
|
|
||||||
|
|
||||||
# TODO: move to $ZDOTDIR/.zsh_history
|
|
||||||
setopt appendhistory
|
setopt appendhistory
|
||||||
setopt sharehistory
|
setopt sharehistory
|
||||||
setopt incappendhistory
|
setopt incappendhistory
|
||||||
|
|||||||
@@ -3,6 +3,7 @@
|
|||||||
alias zdots() { nvim "$ZDOTDIR" }
|
alias zdots() { nvim "$ZDOTDIR" }
|
||||||
alias dots() { nvim ~/.dotfiles }
|
alias dots() { nvim ~/.dotfiles }
|
||||||
alias reload() { source "$ZDOTDIR/.zshrc" }
|
alias reload() { source "$ZDOTDIR/.zshrc" }
|
||||||
|
alias banner() { clear && cat < "$ZDOTDIR/banner" }
|
||||||
|
|
||||||
alias mkcd() { mkdir $1 && cd $1 }
|
alias mkcd() { mkdir $1 && cd $1 }
|
||||||
alias l() { ls -lah "$@" }
|
alias l() { ls -lah "$@" }
|
||||||
|
|||||||
@@ -5,6 +5,8 @@ HISTFILE=$ZDOTDIR/history
|
|||||||
|
|
||||||
# Allow useful scripts in ~/.bin to be in the search path.
|
# Allow useful scripts in ~/.bin to be in the search path.
|
||||||
export PATH=~/.bin:$PATH
|
export PATH=~/.bin:$PATH
|
||||||
|
export PATH=/opt/homebrew/bin:$PATH
|
||||||
|
export PATH=/opt/homebrew/sbin:$PATH
|
||||||
|
|
||||||
# zsh-completions installed by homebrew
|
# zsh-completions installed by homebrew
|
||||||
if type brew &>/dev/null; then
|
if type brew &>/dev/null; then
|
||||||
|
|||||||
Reference in New Issue
Block a user