dotfiles

My dotfiles
git clone git://src.gearsix.net/dotfiles
Log | Files | Refs | Atom

commit 0064ad396ecdc1bd518365ab601e0f9943b22d75
parent 316d1d5b9e7847a44ee790a883bbc869d87a8177
Author: gearsix <gearsix@tuta.io>
Date:   Mon, 16 Jan 2023 10:12:19 +0000

added colors/paper.micro; fixes in install.sh

Diffstat:
Mcolors/install.sh | 10+++++-----
Acolors/paper.micro | 22++++++++++++++++++++++
2 files changed, 27 insertions(+), 5 deletions(-)

diff --git a/colors/install.sh b/colors/install.sh @@ -1,17 +1,17 @@ #!/usr/bin/env sh -for arg in $@; do +for arg in "$@"; do file=$arg dir="" - if [ "$file" = "acme.vim" ]; then dir=~/.config/nvim/colors/ - elif [ "$file" = "acme.micro" ]; then dir=~/.config/micro/colorschemes/ - elif [ "$file" = "acme.Xresources" ]; then dir=~/ + if [ "$file" = "*.vim" ]; then dir=~/.config/nvim/colors/ + elif [ "$file" = "*.micro" ]; then dir=~/.config/micro/colorschemes/ + elif [ "$file" = "*.Xresources" ]; then dir=~/ else echo "usage: ./install FILE"; fi if [ "$dir" = "" ]; then exit; fi mkdir -pv $dir - cp -vi $file $dir + cp -vi "$file" $dir done diff --git a/colors/paper.micro b/colors/paper.micro @@ -0,0 +1,22 @@ +# ~/.config/micro/colorschemes/acme.micro +# 'black' gets overwritten by the terminal +# so #080808 is used, which is close enough + +color-link default "#080808,#fefefe" + +color-link statement "italic #073642" +color-link constant "bold #073642" +color-link constant.string "italic #073642" +color-link identifier "bold #073642" +color-link special "bold #073642" +color-link type "bold #073642" +color-link preproc "bold #073642" +color-link underlined "bold #073642" +color-link symbol "bold #073642" + +color-link comment "italic red" +color-link todo "bold brightred" +color-link error "bold brightred" + +color-link statusline ",#aeeeee" +color-link line-number ",#aeeeee"