diff --git a/.gitconfig b/.gitconfig index 1ec05b2..78a4728 100644 --- a/.gitconfig +++ b/.gitconfig @@ -1,35 +1,6 @@ [user] - email = ava+git@basking.monster - name = gaiety + name = Gaiety + email = ava+git@gaiety.me -[apply] - # Detect whitespace errors when applying a patch - whitespace = fix - -[color] - ui = auto - -[color "diff"] - meta = yellow bold - frag = magenta bold # line info - old = red # deletions - new = green # additions - -[color "status"] - added = yellow - changed = green - untracked = cyan - -[diff] - # Detect copies as well as renames - renames = copies - tool = difft - -[help] - # Automatically correct and execute mistyped commands - autocorrect = 1 - -[push] - # change to maching for machines with older versions of git 1.x.x - default = simple - autoSetupRemote = true +[core] + editor = nvim diff --git a/README.md b/README.md index fc9e25d..36761e7 100644 --- a/README.md +++ b/README.md @@ -7,8 +7,10 @@ Designed for Unix Systems. ```sh curl https://mise.run | sh chmod +x ./mise-tasks/* - +mise trust +mise install mise run install-terminal +mise run symlink ``` diff --git a/mise-tasks/symlink b/mise-tasks/symlink new file mode 100755 index 0000000..42b4843 --- /dev/null +++ b/mise-tasks/symlink @@ -0,0 +1,3 @@ +#!/usr/bin/env bash +#MISE description="Symlink Dotfiles" +ln -sf "$(pwd)/.gitconfig" ~/.gitconfig diff --git a/mise.toml b/mise.toml new file mode 100644 index 0000000..f41cb4c --- /dev/null +++ b/mise.toml @@ -0,0 +1,3 @@ +[tools] +bat = "latest" +neovim = "latest"