symlink dotfiles, bat
This commit is contained in:
parent
8d897d868e
commit
01045b33d6
4 changed files with 13 additions and 34 deletions
37
.gitconfig
37
.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
|
||||
|
|
|
|||
|
|
@ -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
|
||||
```
|
||||
|
||||
|
||||
|
|
|
|||
3
mise-tasks/symlink
Executable file
3
mise-tasks/symlink
Executable file
|
|
@ -0,0 +1,3 @@
|
|||
#!/usr/bin/env bash
|
||||
#MISE description="Symlink Dotfiles"
|
||||
ln -sf "$(pwd)/.gitconfig" ~/.gitconfig
|
||||
3
mise.toml
Normal file
3
mise.toml
Normal file
|
|
@ -0,0 +1,3 @@
|
|||
[tools]
|
||||
bat = "latest"
|
||||
neovim = "latest"
|
||||
Loading…
Add table
Reference in a new issue