https://github.com/wevtimoteo/dotfiles
My configs, tools that I use
https://github.com/wevtimoteo/dotfiles
capistrano cssh emacs git lazyvim nvim pry ruby rubygems tmux vim
Last synced: 10 months ago
JSON representation
My configs, tools that I use
- Host: GitHub
- URL: https://github.com/wevtimoteo/dotfiles
- Owner: wevtimoteo
- License: apache-2.0
- Created: 2012-09-07T14:21:46.000Z (over 13 years ago)
- Default Branch: macos
- Last Pushed: 2025-06-10T17:29:03.000Z (12 months ago)
- Last Synced: 2025-06-11T04:38:59.906Z (12 months ago)
- Topics: capistrano, cssh, emacs, git, lazyvim, nvim, pry, ruby, rubygems, tmux, vim
- Language: Shell
- Homepage: http://wevtimoteo.github.io
- Size: 1.62 MB
- Stars: 6
- Watchers: 1
- Forks: 3
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Dotfiles for macOS
```
_ _ _ _ _ __ _ _
| | (_) | | | | | | / _(_) |
__ _______ _| |_ _ _ __ ___ ___ | |_ ___ ___ __| | ___ | |_| |_ _| | ___ ___
\ \ /\ / / _ \ \ / / __| | '_ ` _ \ / _ \| __/ _ \/ _ \ / _` |/ _ \| __| _| | |/ _ \/ __|
\ V V / __/\ V /| |_| | | | | | | (_) | || __/ (_) | | (_| | (_) | |_| | | | | __/\__ \
\_/\_/ \___| \_/ \__|_|_| |_| |_|\___/ \__\___|\___/ \__,_|\___/ \__|_| |_|_|\___||___/
```
Also check the [Linux version](https://github.com/wevtimoteo/dotfiles/tree/linux).
Includes:
- [neovim](https://neovim.io/): better vim-based text editor
- [wezterm](https://wezfurlong.org/wezterm): terminal emulator and multiplexer
- [tmux](https://github.com/tmux/tmux): terminal multiplexer (I don't use `wezterm` for it)
- [gh](https://github.com/cli/cli): GitHub’s official command line tool
- [tig](https://jonas.github.io/tig/): ncurses-based text-mode interface for git
- [codespell](https://github.com/codespell-project/codespell): check code for common misspellings
## Setup
```bash
git clone git://github.com/wevtimoteo/dotfiles.git
cd dotfiles
./install.zsh --simulate
brew bundle
```
Omit `--simulate` to actually run it.
### Config files
### Codespell ignore words
Add a file under `~/.config/codespell/ignore-words.txt`:
```txt
SourceLevel
Dotfiles
```
### Vale Styles
To sync vale styles use:
```bash
vale sync
```
## Updating tools
```bash
topgrade -n
```
Omit `-n` to actually run it.
## References
- [dynaum/dotfiles](https://github.com/dynaum/dotfiles)
- [DailyVim](http://dailyvim.tumblr.com)
- [BrunoGrasselli/vim_files](https://github.com/BrunoGrasselli/vim_files)
- [georgeguimaraes/nvim-config](https://github.com/georgeguimaraes/nvim-config)