My personal development environment configuration optimized for Ubuntu 24.04 and WSL, designed to provide a consistent and easily reproducible experience across machines.
- Neovim: Lua configuration with LSP, treesitter, and WSL clipboard integration
- Tmux: Terminal multiplexer with Vim-style navigation and session persistence
- Zsh: Shell configuration with Oh-My-Zsh, aliases, and developer tooling setup
- Bash: Utility scripts, color-coded logging, and environment detection
- WSL Integration: Seamless clipboard sharing between Ubuntu and Windows
# Clone the repository
git clone https://github.com/Unique-Divine/dotfiles.git
cd dotfiles
# Install Rust and cargo
sudo apt install build-essential ripgrep
# This might be different for you. The command comes from here:
# https://rustup.rs/
curl --proto '=https' --tlsv1.2 -sSf https://sh.rustup.rs | sh
cargo install just
cargo install bat
# Create symbolic links for configurations
source zsh/zshenv # internally runs $DOTFILES/symlinks.sh
# Install development tools
bun install
just setup
# For Neovim plugins
nvim --headless -c 'autocmd User PackerComplete quitall' -c 'PackerSync'This dotfiles repo uses symbolic links to maintain a single source of truth for all configurations. The advantages of this approach include:
- Version control: Track changes to your configurations over time
- Portability: Quickly set up identical environments across machines
- Centralization: Modify configs in one place and have changes propagate
- Safety: Original system files aren't modified, only linked to
- Maintenance: Updates to the repo instantly apply to all linked machines
The symlinks.sh script handles creating all necessary symbolic links to connect the configurations in this repo to their expected locations in your home directory and .config folder.
- Custom
pbcopyandpbpastecommands that work with Windows clipboard - Neovim configured to use system clipboard across WSL/Windows boundary
- Automatically removes Windows line endings when pasting
- Light/dark theme toggle (Catppuccin/OneDark)
- Treesitter with support for modern languages including Astro
- LSP with auto-installation of language servers
- Harpoon, Telescope, and other navigation enhancements
- Tmux with Dracula theme and plugin manager
- Zsh configured for Node.js, Rust, Go, and Python development
- Bun JavaScript/TypeScript runtime integration
- Ubuntu 24.04 (or compatible) on WSL2
- Neovim v10.0.4+ (ARM64 AppImage included)
- Zsh with Oh-My-Zsh
- Tmux
- Bun and Node.js
- Cargo/Rust tools
- Just command runner (
cargo install just)
# Run all tests
just test
# or
bun test
# Test clipboard functionality
bun test zsh/clipboard.test.ts