No description
Find a file
2025-09-16 21:06:42 -04:00
bin/bin Remove old color swap stuff 2024-12-31 12:30:36 -05:00
ghostty/.config/ghostty Fix color schemes after Ghostty update 2025-09-16 21:06:42 -04:00
git Configure work git 2025-08-22 10:18:00 -04:00
mise/.config/mise Stow mise config 2025-09-04 16:51:16 -04:00
nvim/.config/nvim Update nvim packages 2025-09-05 09:09:18 -04:00
ruby Use GNU stow to manage symlinks 2021-05-13 21:09:01 -04:00
ssh/.ssh ( ͡° ͜ʖ ͡°) 2025-09-10 11:40:40 -04:00
tmux/.config/tmux Use tmux 3 style! 2023-07-27 23:53:23 -04:00
zsh Gem search, append history 2025-02-20 13:36:22 -05:00
.gitignore Swap to toml configuration for alacritty 2024-02-18 22:24:51 -05:00
.mise.toml Allow ripgrep to search hidden in dotfiles 2024-09-19 08:53:25 -04:00
.ripgreprc Allow ripgrep to search hidden in dotfiles 2024-09-19 08:53:25 -04:00
install.sh Provide ssh conig (via copy, not stow) 2025-09-08 10:35:58 -04:00
packages-darwin-brew-cask-personal.txt Make install script work and update pkgs 2025-08-22 09:56:46 -04:00
packages-darwin-brew-cask-work.txt Add cursor (work trial) 2025-06-09 09:50:01 -04:00
packages-darwin-brew-cask.txt Include Joplin 2025-09-04 16:46:03 -04:00
packages-darwin-brew.txt Remove orbstack 2024-04-10 21:43:02 -04:00
packages-linux-apt.txt Swap in RTX (#1) 2023-11-10 20:57:01 -05:00
packages-shared-brew.txt Make install script work and update pkgs 2025-08-22 09:56:46 -04:00
README.md Update clone URL 2023-08-27 10:04:53 -04:00

dotfiles

Personal dotfiles managed via GNU stow.

Installation

cd $HOME
git clone https://git.atomaka.com/atomaka/dotfiles.git
cd dotfiles
./install.sh

Notes

  • Some homebrew packages (ie. vim) might be missing desired features
brew uninstall PACKAGE
brew edit PACKAGE # where there is no local directory named PACKAGE
# add compile options
brew install -s PACKAGE
  • Minor Ruby conflicts with brew/OpenSSL version/Ruby. This has worked, but also caused problems
export PATH="/home/linuxbrew/.linuxbrew/opt/openssl@3/bin:$PATH"
export LDFLAGS="-L/home/linuxbrew/.linuxbrew/opt/openssl@3/lib"
export CPPFLAGS="-I/home/linuxbrew/.linuxbrew/opt/openssl@3/include"
export PKG_CONFIG_PATH="/home/linuxbrew/.linuxbrew/opt/openssl@3/lib/pkgconfig"