Skip to content

thomascit/dotfiles

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

 ██████╗  ██████╗ ████████╗███████╗██╗██╗     ███████╗███████╗
 ██╔══██╗██╔═══██╗╚══██╔══╝██╔════╝██║██║     ██╔════╝██╔════╝
 ██║  ██║██║   ██║   ██║   █████╗  ██║██║     █████╗  ███████╗
 ██║  ██║██║   ██║   ██║   ██╔══╝  ██║██║     ██╔══╝  ╚════██║
 ██████╔╝╚██████╔╝   ██║   ██║     ██║███████╗███████╗███████║
 ╚═════╝  ╚═════╝    ╚═╝   ╚═╝     ╚═╝╚══════╝╚══════╝╚══════╝

🎨 Personal Development Environment Configuration

Meticulously crafted dotfiles for macOS & Linux developers who appreciate clean configs, powerful tools, and the Dracula aesthetic.

Theme: Dracula Platform: macOS Platform: Linux Manager: GNU Stow

Managed with GNU StowXDG Base Directory CompliantModular & Portable


Quick Start

git clone https://github.com/thomascit/dotfiles.git ~/dotfiles
cd ~/dotfiles

# Minimal setup (shell + editor + multiplexer)
stow -v -R zsh starship tmux vim
cp .zshrc "$HOME/"

# Or full setup
stow -v -R aerospace alacritty bash bat btop eza fish ghostty hypr i3 kitty lazygit nvim polybar starship tmux vim vimium waybar yazi zsh
cp .bashrc .zshrc .vimrc "$HOME/"

Prerequisites

Required

  • Git and GNU Stow

Core Tools

Category Tools
Shell & Prompt Bash, Zsh, Fish, Starship, Zoxide
File Management Eza, Bat, FZF, Yazi
Development Vim, Tmux, Lazygit
Terminals Alacritty, Ghostty, Kitty

Platform Specific

  • macOS: Aerospace (tiling window manager)
  • Linux: i3 (window manager), Polybar (status bar)

Optional

  • Figlet, Lolcat, Fastfetch

Quick Install (macOS)

Option 1: Using Brewfile (Recommended)

# Stow the Brewfile first
cd ~/dotfiles
stow -v -R homebrew

# Install all packages
brew bundle --file ~/Brewfile

Option 2: Manual Installation

# Core tools
brew install git stow starship zoxide eza bat fzf lazygit tmux vim yazi

# Terminal emulators
brew install --cask alacritty ghostty kitty

# Optional tools
brew install figlet lolcat fastfetch 

Quick Install (Linux)

# Ubuntu/Debian example - adjust package names for your distro
sudo apt install git stow zsh fish tmux vim

# Tools that may require external repos or manual installation
# starship: https://starship.rs/guide/#🚀-installation
# zoxide: https://github.com/ajeetdsouza/zoxide#installation
# eza: https://github.com/eza-community/eza#installation
# lazygit: https://github.com/jesseduffield/lazygit#installation
# yazi: https://github.com/sxyazi/yazi#installation

Install

git clone https://github.com/thomascit/dotfiles.git ~/dotfiles
cd ~/dotfiles

# Stow packages into $HOME (symlinks land under ~/.config/*)
stow -v -R aerospace alacritty bash bat btop eza fish ghostty homebrew hypr i3 kitty lazygit nvim polybar starship tmux vim vimium waybar yazi zsh

# Copy wrapper files that source configs from ~/.config
cp .bashrc .zshrc .vimrc "$HOME/"

Selective install example:

# Only Zsh + Vim + Tmux
stow -v -R zsh vim tmux

Update configs after making changes:

# Re-stow to refresh symlinks
stow -v -R <package>

# Unstow to remove a package
stow -D <package>

Linux: bat vs batcat

On some distributions (e.g., Debian/Ubuntu), the bat executable is installed as batcat. You can symlink it to bat:

mkdir -p ~/.local/bin
ln -s /usr/bin/batcat ~/.local/bin/bat

Make sure ~/.local/bin is on your PATH.

Theme

Dracula is the preferred theme across these dotfiles. Many configs default to a Dracula theme or variant (e.g., Vim colorscheme, Fish theme, tmux theme, terminal themes). For more details, themes, and supported apps, see https://draculatheme.com.

Fonts

Includes JetBrainsMono Nerd Font at fonts/. Install it so terminals and prompts render glyphs:

  • macOS: open the .ttf file to install.
  • Linux: copy to ~/.local/share/fonts then run fc-cache -f -v.

Tmux + TPM

TPM (Tmux Plugin Manager) must be installed manually:

git clone https://github.com/tmux-plugins/tpm ~/.config/tmux/plugins/tpm

Then start tmux and install plugins:

  1. Launch tmux: tmux
  2. Press <prefix> + I (default: Ctrl+Space then I) to install plugins
  3. Press <prefix> + r (default: Ctrl+Space then r) to reload config

Note: Plugins are managed by TPM and are not tracked in this repository.

Plugin Managers

  • Vim: uses vim-plug. The vim/.config/vim/vimrc auto-installs vim-plug and triggers PlugInstall on first run.
  • Zsh: uses zinit (zdharma-continuum) for plugins. zsh/.config/zsh/zshrc bootstraps zinit if missing.

What's Inside

Package Description
aerospace Tiling window manager for macOS
alacritty Terminal emulator with Dracula theme
bash/zsh/fish Shells with VI mode, Starship prompt, Zoxide, shared aliases
bat Cat replacement with syntax highlighting
btop Resource monitor with customizable interface
eza Modern ls replacement with icons and Git status
ghostty Fast GPU-accelerated terminal
homebrew Brewfile for automated package installation (macOS)
hypr Hyprland compositor configuration (Linux)
i3 Tiling window manager (Linux)
kitty GPU-based terminal emulator
lazygit Terminal UI for Git
nvim Neovim with LazyVim configuration
polybar Status bar for i3 (Linux)
starship Fast, customizable shell prompt
tmux Terminal multiplexer with TPM plugins
vim Editor with vim-plug and Dracula theme
vimium Browser extension for Vim keybindings
waybar Wayland status bar (Linux)
yazi Terminal file manager with plugins

Troubleshooting

Stow conflicts? Use stow -D <package> to unstow first, then re-stow with stow -R <package>.

Fonts not working? Ensure JetBrainsMono Nerd Font is installed and your terminal is configured to use it.

TPM plugins not loading? In tmux, press Ctrl+Space then I to install plugins.

Notes

  • .stowrc targets $HOME and ignores fonts. Run stow from the repo root.
  • Wrapper dotfiles (.bashrc, .zshrc, .vimrc) live in the repo root and simply source configs from ~/.config/*.
  • macOS Homebrew: shell configs detect /opt/homebrew (Apple Silicon) or /usr/local (Intel) and initialize whichever exists.

About

No description, website, or topics provided.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Contributors 2

  •  
  •