New set of dotfiles for an Artix installation.
  • Vim Script 57.5%
  • Shell 23.9%
  • CSS 18.6%
Find a file
Repository files (latest commit first)
Filename Latest commit message Latest commit date
2026-07-25 15:49:36 -04:00
foot.ini added some comments to each file regarding symlink locations 2026-07-13 20:22:11 -04:00
mako.config added mako config 2026-07-13 20:28:18 -04:00
README.md added some info to the readme 2026-07-09 20:03:56 -04:00
swaylock.config added some comments to each file regarding symlink locations 2026-07-13 20:22:11 -04:00
swaywm.config added a for_window rule for testing something for a script 2026-07-25 14:14:37 -04:00
swaywm.config.arch added some comments to each file regarding symlink locations 2026-07-13 20:22:11 -04:00
tmux.conf added some comments to each file regarding symlink locations 2026-07-13 20:22:11 -04:00
vimrc added keymap to open netrw, disabled edit vimrc keymap to speed up netrw keymap 2026-07-25 15:48:54 -04:00
waybar.config added vim set filetype command to file to correct filetype to json 2026-07-25 15:49:36 -04:00
waybar.style.css fixed waybar style.css comment whoopsie 2026-07-13 20:29:56 -04:00

Config Files

These are my personal config files for various software running on a System76 Galago Pro 5 (galp5) laptop.

I keep my config files in a directory named Dotfiles in my home directory and then symlink them to their required location. This allows me to easily manage the files in a git repo.

For example:

# config file for sway is located at
~/.config/sway/config

# move sway config file to dotfiles directory and rename
mv ~/.config/sway/config ~/Dotfiles/swaywm.config

# symlink config file back to original location and name
ln -s /home/$USER/Dotfiles/swaywm.config /home/$USER/.config/sway/config

This is a simple method of managing config files in a git repo without having to use any additional software. At least, I think it's easy. It suits my needs well enough.