The sickest dotfiles in the Midwest 🔥
🍺 Homebrew The Missing Package Manager for MacOS (or Linux)
📲Mac App Store CLI A CLI for the Mac App Store. Installs all your favorite apps in just 1 line!
Neovim A modern, ground up rewrite of Vim that makes life easy
Kitty A fast, GPU based terminal alternative to iTerm
Tmux Create, split, save, move terminal tabs easily all within one window.
Fzf The fastest way to search for ANYTHING on your computer
Prezto An light-weight & sensible alternative to oh-my-zsh that actually works nicely
Powerline10k A Lightning fast, easy to set up theme for Zsh
Optimized MacOS Configuration A series of one line commands that speed up and turn off the features that annoy developers the most!
if you want to add paths and extra aliases, you can add them into alias
and
path
. this is loaded by ~/.zshenv
source first_time_setup.sh
- zprezto repo - https://github.com/peterpme/prezto
-
https://github.com/mathiasbynens/dotfiles/blob/master/.macos
-
https://github.com/caarlos0/dotfiles/blob/master/zsh/zshrc.symlink
-
https://github.com/webpro/dotfiles/tree/master/config/hammerspoon
-
https://github.com/bitprophet/dotfiles/tree/master/.hammerspoon
-
** awesome hammerspoon & https://github.com/ashfinal/awesome-hammerspoon
-
base16 black metal themes https://github.com/metalelf0/base16-black-metal-scheme
-
https://github.com/norcalli/nvim-colorizer.lua/blob/master/README.md
-
https://github.com/makovich/dotfiles/tree/master/dns dns stuff
- look into cron jobs and cleanup scripts
- copy over gitconfig correctly
- update gitconfig !!! look at nicknisi and paul irish< matiasj>
- copy over sshconfig correctly
- copy over npmrc correcetly
- set caps to control in osx.sh settings
- find and setup popular sublime confi
- find and setup popular vscode config
- set up vimbox
- add macvim to brew cask
- correctly setup iCloud for important files / folders / certs
- look at AUTH SOCK stuff https://github.com/akashin/dotfiles/blob/master/zsh/zshrc.symlink#L52
- look into why .npmrc needs to be EXPORTED
- heroku autocomplete
- set up a cron job that checks for latest version of reason-language-server (and other bins to update them)
Neovim is a fork and drop-in replacement for vim. in most cases, you would not notice a difference between the two, other than Neovim allows plugins to run asynchronously so that they do not freeze the editor, which is the main reason I have switched over to it. Vim and Neovim both use Vimscript and most plugins will work in both (all of the plugins I use do work in both Vim and Neovim). For this reason, they share the same configuration files in this setup. Neovim uses the XDG base directory specification which means it won't look for a .vimrc
in your home directory. Instead, its configuration looks like the following:
Vim | Neovim | |
---|---|---|
Main Configuration File | ~/.vimrc |
~/.config/nvim/init.vim |
Configuration directory | ~/.vim |
~/.config/nvim |