My NixOS configuration with Nix Flakes, Home Manager, Stylix, and Hyprland.
Go to file
Donovan Glover b2c252d82a
meta: Add executable bit to bspwmrc and other scripts
After a considerable amount of research, I finally understand how to use
chmod and what file permissions in linux actually mean.

It turns out that git can commit both regular files (644 permission) and
executable files (755 permission). This is great since changing file
permissions manually after a git clone is no longer needed.

This useful feature is enabled by default, however, it seems like I
disabled it a long time ago. If this is you, simply re-enable it by
setting `filemode` to true in your .git/config.
2018-11-01 20:58:24 -04:00
.archlinux misc: Update docs 2018-10-31 13:03:41 -04:00
.fedora fedora: Change cursor theme to Breeze 2018-10-31 10:04:48 -04:00
bspwm meta: Add executable bit to bspwmrc and other scripts 2018-11-01 20:58:24 -04:00
code docs: Add READMEs for code, gpg, and systemd 2018-10-23 16:25:45 -04:00
editorconfig misc: Update dotfiles 2018-10-27 15:48:08 -04:00
extras docs: Fix some typos and missing instructions 2018-10-27 15:44:59 -04:00
fish misc: Update docs 2018-10-31 13:03:41 -04:00
git docs: Fix some typos and missing instructions 2018-10-27 15:44:59 -04:00
gpg misc: Update docs 2018-10-31 13:03:41 -04:00
plasma meta: Add executable bit to bspwmrc and other scripts 2018-11-01 20:58:24 -04:00
systemd docs: Add ssh-agent instructions 2018-10-27 16:03:11 -04:00
tmux docs: Add READMEs for git, plasma, and tmux 2018-10-23 14:25:45 -04:00
vim misc: Update docs 2018-10-31 13:03:41 -04:00
xmodmap docs: Add READMEs for fish, vim, and xmodmap 2018-10-23 13:01:16 -04:00
LICENSE Relicense under MIT 2018-08-16 17:21:15 -04:00
Makefile Makefile: Add systemd-enable-now target 2018-10-27 18:37:47 -04:00
README.md misc: Update docs 2018-10-31 13:03:41 -04:00

Dotfiles

TODO: Screenshots

Usage

Step 0. Clone this repository

Add --depth 1 to only fetch the latest commit.

git clone https://github.com/GloverDonovan/dotfiles.git --depth 1

Step 1. Install stow

Step 2. Install the dotfiles you want

For example, to use my vim config, run:

make package=vim

Since my dotfiles are managed with Stow, any of your existing dotfiles will not be overridden or changed.

List of dotfiles

  • bspwm - All the config files relating to my window manager setup.
  • code - My config for Code, a reasonable editor for non-vim users.
  • editorconfig - Spaces or tabs? Just use .editorconfig.
  • extras - A collection of miscellaneous other dotfiles I use.
  • fish - My settings for fish, the friendly interactive shell.
  • git - The standard version control tool.
  • gpg - My settings for GPG.
  • plasma - Dotfiles specific to KDE Plasma.
  • systemd - User services, such as ssh-agent and urxvtd.
  • tmux - A vim-like terminal multiplexer that gets out of your way.
  • vim - The settings I use for vim, also known as the best editor.
  • xmodmap - Make caps lock function as ctrl and escape.

Uninstall

If you don't want to use some of my dotfiles anymore, they can be easily uninstalled. For example, if you don't want to use my .vimrc anymore, run:

make uninstall package=vim

This will only remove the files that Stow owns, while keeping your other files intact.