Compare commits
No commits in common. "e5954131fbadd5f6c81f44646bfb591b2494097a" and "a95c5d73549519becd1bb046d0172244e15add18" have entirely different histories.
e5954131fb
...
a95c5d7354
11 changed files with 20 additions and 83 deletions
1
.gitignore
vendored
1
.gitignore
vendored
|
@ -159,4 +159,3 @@ cython_debug/
|
|||
# End of https://www.toptal.com/developers/gitignore/api/python
|
||||
|
||||
.task.mk
|
||||
lib/plugins/
|
||||
|
|
|
@ -1,5 +1,4 @@
|
|||
GOAL_STYLE = b_magenta
|
||||
HELP_SEP = {a.b_green}->>{a.end}
|
||||
USAGE = {a.italic}{a.b_cyan}Best Dots Around{a.end}\n
|
||||
PHONIFY = 1
|
||||
|
||||
|
|
13
Makefile
13
Makefile
|
@ -1,13 +1,21 @@
|
|||
lint: lint.py lint.sh ## lint.*
|
||||
|
||||
msg = $(if tprint,$(call tprint,{a.b_magenta}==>{a.end}{a.bold} $(1){a.end}),@echo '==> $(1)')
|
||||
|
||||
lint: ## lint python files
|
||||
lint.py: info ## lint python files
|
||||
$(call msg,Linting Python Files)
|
||||
@black $(shell find -type f -name "*.py")
|
||||
|
||||
.PHONY: lint.sh
|
||||
lint.sh: ## lint shell files
|
||||
$(call msg,Linting Shell Files)
|
||||
@shfmt -s -w $(shell shfmt -f .)
|
||||
|
||||
completions: ## generate completion scripts
|
||||
$(call msg,Generating Completions)
|
||||
@./lib/completions/update.sh
|
||||
|
||||
.PHONY: fzf
|
||||
fzf: lib/.fzf/completion.zsh lib/.fzf/key-bindings.zsh ## update fzf shell scripts
|
||||
|
||||
# update fzf shell scripts
|
||||
|
@ -15,6 +23,7 @@ lib/.fzf/%.zsh: FORCE
|
|||
wget -O $@ \
|
||||
https://raw.githubusercontent.com/junegunn/fzf/master/shell/$*.zsh
|
||||
|
||||
.PHONY: db d-build
|
||||
db d-build: ## build docker image
|
||||
$(call msg,Building Docker Image)
|
||||
@DOCKER_BUILDKIT=1 docker build \
|
||||
|
@ -23,10 +32,12 @@ db d-build: ## build docker image
|
|||
-f docker/Dockerfile \
|
||||
-t dots .
|
||||
|
||||
.PHONY: dr d-run
|
||||
dr d-run: ## run docker image
|
||||
$(call msg,Running Docker Image)
|
||||
docker run --rm -it dots
|
||||
|
||||
.PHONY: dr-keep
|
||||
dr-keep:
|
||||
docker run -it dots
|
||||
|
||||
|
|
|
@ -1,52 +0,0 @@
|
|||
.dotfiles/lib/plugins/base16:
|
||||
rereshPeriod: 168h
|
||||
type: git-repo
|
||||
url: https://github.com/chriskempson/base16-shell.git
|
||||
|
||||
.dotfiles/lib/plugins/zsh-defer:
|
||||
rereshPeriod: 168h
|
||||
type: git-repo
|
||||
url: https://github.com/romkatv/zsh-defer.git
|
||||
|
||||
.dotfiles/lib/plugins/zsh-syntax-highlighting:
|
||||
rereshPeriod: 168h
|
||||
type: git-repo
|
||||
url: https://github.com/zsh-users/zsh-syntax-highlighting.git
|
||||
|
||||
.dotfiles/lib/plugins/fzf-tab:
|
||||
rereshPeriod: 168h
|
||||
type: git-repo
|
||||
url: https://github.com/Aloxaf/fzf-tab.git
|
||||
.dotfiles/lib/plugins/oh-my-zsh:
|
||||
type: "archive"
|
||||
url: https://github.com/ohmyzsh/ohmyzsh/archive/master.tar.gz
|
||||
# exact: true
|
||||
# chezmoi refuses to mkdir with nested directories
|
||||
stripComponents: 2
|
||||
refreshPeriod: "168h"
|
||||
include:
|
||||
- "*/lib/{clipboard,completion}.zsh"
|
||||
- "*/plugins/{dotenv,extract}/**"
|
||||
#
|
||||
# include:
|
||||
#
|
||||
# - "*/plugins/{dotenv,extract}/**/*"
|
||||
# include: ["plugins/dotenv/**", "plugins/extract/**"]
|
||||
|
||||
# .oh-my-zsh:
|
||||
# exact: true
|
||||
# refreshPeriod: 168h
|
||||
# stripComponents: 1
|
||||
# type: archive
|
||||
# url: https://github.com/ohmyzsh/ohmyzsh/archive/master.tar.gz
|
||||
# .oh-my-zsh/custom/plugins/zsh-syntax-highlighting:
|
||||
# exact: true
|
||||
# refreshPeriod: 168h
|
||||
# stripComponents: 1
|
||||
# type: archive
|
||||
# url: https://github.com/zsh-users/zsh-syntax-highlighting/archive/master.tar.gz
|
||||
# .oh-my-zsh/custom/themes/powerlevel10k:
|
||||
# exact: true
|
||||
# stripComponents: 1
|
||||
# type: archive
|
||||
# url: https://github.com/romkatv/powerlevel10k/archive/v1.15.0.tar.gz
|
|
@ -12,7 +12,7 @@ fi
|
|||
PATH="$DOTFILES_DIR/bin:$PATH"
|
||||
. $DOTFILES_DIR/lib/function.zsh
|
||||
|
||||
for DOTFILE in "$DOTFILES_DIR"/lib/{path,env,prompt,alias,conda,plugins,custom}.zsh; do
|
||||
for DOTFILE in "$DOTFILES_DIR"/lib/{path,env,prompt,alias,conda,custom}.zsh; do
|
||||
[ -f "$DOTFILE" ] && . "$DOTFILE"
|
||||
done
|
||||
|
||||
|
|
|
@ -4,7 +4,6 @@ return {
|
|||
ignore_filetypes = { -- disable format on save for specified filetypes
|
||||
"markdown",
|
||||
"python",
|
||||
"html",
|
||||
},
|
||||
},
|
||||
}
|
||||
|
|
|
@ -1,7 +1,5 @@
|
|||
- .git/**
|
||||
- .vscode/**
|
||||
- ~$*
|
||||
# libre office files
|
||||
- .~*#
|
||||
- node_modules/**
|
||||
+ **
|
||||
|
|
|
@ -5,7 +5,7 @@ CURDIR=${0:a:h}
|
|||
gen() {
|
||||
if is-executable $1; then
|
||||
echo "$1 updated"
|
||||
"$@" | sed "s#$HOME#\$HOME#g" >$CURDIR/"_$argv[1]"
|
||||
"$@" | sed "s#$HOME#\$HOME#g" > $CURDIR/"_$argv[1]"
|
||||
else
|
||||
echo "skipping $1"
|
||||
fi
|
||||
|
|
|
@ -34,7 +34,6 @@ export FZF_DEFAULT_OPTS=${FZF_COLORS}${FZF_LAYOUT}
|
|||
export FZF_CTRL_GENERAL="--height=100% --margin=0,0,0"
|
||||
|
||||
#adapted from https://github.com/zimfw/fzf/blob/master/init.zsh
|
||||
# TODO: fix this so it works with $ **<tab>
|
||||
if [ -x "$(command -v fd)" ]; then
|
||||
export FZF_DEFAULT_COMMAND="command fd --type file --exclude ".git/" --hidden --no-ignore"
|
||||
_fzf_compgen_path() {
|
||||
|
|
|
@ -1,22 +0,0 @@
|
|||
#!/usr/bin/env zsh
|
||||
|
||||
PLUGINS_DIR=$DOTFILES_DIR/lib/plugins
|
||||
|
||||
source $PLUGINS_DIR/zsh-defer/zsh-defer.plugin.zsh
|
||||
|
||||
# TODO: automate collection of plugin files
|
||||
plugins=(
|
||||
base16/base16-shell.plugin.zsh
|
||||
fzf-tab/fzf-tab.plugin.zsh
|
||||
zsh-syntax-highlighting/zsh-syntax-highlighting.plugin.zsh
|
||||
oh-my-zsh/clipboard.zsh
|
||||
oh-my-zsh/completion.zsh
|
||||
oh-my-zsh/dotenv/dotenv.plugin.zsh
|
||||
oh-my-zsh/extract/extract.plugin.zsh
|
||||
)
|
||||
|
||||
for plugin in $plugins; do
|
||||
zsh-defer source $PLUGINS_DIR/$plugin
|
||||
done
|
||||
|
||||
unset PLUGINS_DIR plugins
|
|
@ -3,6 +3,12 @@
|
|||
autoload -Uz compinit
|
||||
compinit
|
||||
|
||||
if is-executable sheldon; then
|
||||
eval "$(sheldon -q --config-file ~/.config/sheldon/plugins.toml source)"
|
||||
else
|
||||
echo "no sheldon = no shell extensions loaded"
|
||||
fi
|
||||
|
||||
is-executable zoxide && eval eval "$(zoxide init zsh --cmd cd)"
|
||||
|
||||
if is-executable starship; then
|
||||
|
|
Loading…
Reference in a new issue