8000 GitHub - javuto/osx-configs: vimrc, dotfiles and other shit for OSX
[go: up one dir, main page]
More Web Proxy on the site http://driver.im/
Skip to content

javuto/osx-configs

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

9 Commits
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

configs

vimrc, dotfiles and other shit

brew

Check https://brew.sh/ for more instructions but basically:

/usr/bin/ruby -e "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/master/install)"

wget

Install wget using brew:

brew install wget

vim

Copy vimrc file to $HOME:

cp vimrc ~/.vimrc

You can also retrieve it from https://javuto.net/vimrc:

wget -O ~/.vimrc https://javuto.net/vimrc

vscode

Install Visual Studio Code from https://code.visualstudio.com/Download

Code > Preferences > Settings > User Settings

To list all the installed extensions run:

$ /Applications/Visual\ Studio\ Code.app/Contents/Resources/app/bin/code --list-extensions

To install the extensions in a text file, run:

for i in $(cat extensions.txt)
do 
  /Applications/Visual\ Studio\ Code.app/Contents/Resources/app/bin/code --install-extension $i
done

iterm2

Install iTerm2 from https://www.iterm2.com/downloads.html

Import settings: iTerm2 > Preferences > General > Load preferences from a custom folder or URL

You will need to add the powerline fonts, you can find them in https://github.com/powerline/fonts in the fonts directory.

zsh

Install oh-my-zsh from https://github.com/robbyrussell/oh-my-zsh:

sh -c "$(curl -fsSL https://raw.githubusercontent.com/robbyrussell/oh-my-zsh/master/tools/install.sh)"

Copy the themes folder:

cp -R themes ~/.oh-my-zsh

Enable custom configuration:

cp zshrc ~/.zshrc

karabiner

Install Karabiner-Elements from https://github.com/tekezo/Karabiner-Elements

cp karabiner.json ~/.config/karabiner

Random apps

http://member.ipmu.jp/yuji.tachikawa/MenuMetersElCapitan/

https://github.com/Clipy/Clipy

https://github.com/eczarny/spectacle

https://www.vagrantup.com/downloads.html

https://www.virtualbox.org/wiki/Downloads

https://www.obdev.at/products/littlesnitch/download.html

https://www.wireshark.org/download.html

Command line

ag: silver searcher

brew install the_silver_searcher

pip

curl https://bootstrap.pypa.io/get-pip.py -o get-pip.py
sudo python get-pip.py

wget

brew install wget

nmap

brew install nmap

awscli

brew install awscli

Settings

Dock position

defaults write com.apple.Dock orientation -string left
killall Dock

Show battery percentage

defaults write com.apple.menuextra.battery ShowPercent YES
killall SystemUIServer

Add Spanish language

defaults write -g AppleLanguages -array "en-US" "es-US"

Done.

About

vimrc, dotfiles and other shit for OSX

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published
0