https://github.com/eoinkelly/dotfiles
https://github.com/eoinkelly/dotfiles
Last synced: 8 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/eoinkelly/dotfiles
- Owner: eoinkelly
- Created: 2013-06-16T01:08:45.000Z (over 12 years ago)
- Default Branch: main
- Last Pushed: 2024-10-01T21:31:16.000Z (about 1 year ago)
- Last Synced: 2025-01-07T08:48:36.942Z (9 months ago)
- Language: Shell
- Size: 3.58 MB
- Stars: 1
- Watchers: 3
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Eoin's dotfiles
# Setup new machine
This section is WIP
```
brew install fzf neovim pyenv rbenv nodenv direnv
brew install font-monaspace-nerd-font font-sauce-code-pro-nerd-font diff-so-fancy# setup dotfiles
# ##############
brew install git stow vim
git clone repo ~/.dotfiles
cd ~/.dotfiles
bash ./install-all-with-stow.sh# Install oh-my-zsh
git clone git@github.com:robbyrussell/oh-my-zsh.git ~/.oh-my-zsh# You might have to turn off some bits of the dotfiles
# which are not yet installed on the machine
# setup vim
# #########git clone https://github.com/VundleVim/Vundle.vim.git ~/.vim/bundle/Vundle.vim
pyenv install
pyenv global
pip install pynvim
# open vim
:PluginInstallgit clone https://github.com/madumlao/phpenv.git ~/.phpenv
# finish fzf setup
$(brew --prefix)/opt/fzf/installrbenv install 3.something_modern
pyenv install 3.something_modern# after installing vscode
./set-default-open-with-macos.sh```
## Apple stuff
* Finder sidebar
* show filename extension
* enable the shortcuts I like in finder sidebar
* show hidden files `cmd-shift-.`
* copy `private_bin` dir from old and wire it up
* change keyboard modifier keys to match microsoft keyboard (swap option and cmd)
* Keyboard prefs
```
keyboard tab
set fastest key repeating
set shortest delay until repeat
text tab
turn off smart quotes
turn off period after double space
```Setup key repeating the way I like:
```
defaults write -g ApplePressAndHoldEnabled -bool false
# needs a restart to take hold
```