fix exec permissions on hooks
This commit is contained in:
parent
8053f8866f
commit
1b65a42a12
4 changed files with 8 additions and 4 deletions
|
@ -69,9 +69,9 @@ context.work.read=+work -home or -TAGGED
|
|||
context.work.write=+work
|
||||
context.home.read=+home -work or -TAGGED
|
||||
context.home.write=+home
|
||||
taskd.certificate=/home/kellya/.task/private.certificate.pem
|
||||
taskd.key=/home/kellya/.task/private.key.pem
|
||||
taskd.ca=/home/kellya/.task/ca.cert.pem
|
||||
taskd.certificate=/home/kellya/.local/share/task/private.certificate.pem
|
||||
taskd.key=/home/kellya/.local/share/task/private.key.pem
|
||||
taskd.ca=/home/kellya/.local/share/task/ca.cert.pem
|
||||
taskd.server=inthe.am:53589
|
||||
taskd.credentials=inthe_am/kellya/610917c8-9119-4b59-b87e-d886c2e08bf0
|
||||
taskd.trust=strict
|
||||
|
|
|
@ -151,6 +151,11 @@ export FZF_DEFAULT_OPTS="--extended"
|
|||
export FZF_DEFAULT_COMMAND="fd --type f"
|
||||
export FZF_CTRL_T_COMMAND="$FZF_DEFAULT_COMMAND"
|
||||
|
||||
#XDG stuff
|
||||
export XDG_DATA_HOME=$HOME/.local/share
|
||||
export XDG_CONFIG_HOME=$HOME/.config
|
||||
export XDG_STATE_HOME=$HOME/.local/state
|
||||
|
||||
#ZVM customizations
|
||||
# Cursors seem backwards, swap 'em
|
||||
ZVM_INSERT_MODE_CURSOR=$ZVM_CURSOR_BLOCK
|
||||
|
@ -167,7 +172,6 @@ eval "$(fasd --init auto)"
|
|||
source ~/.zplug/init.zsh
|
||||
zplug "wookayin/fzf-fasd"
|
||||
zplug "plugins/git", from:oh-my-zsh
|
||||
# If this isn't the last thing, you will drive yourself crazy with completions that don't work even though it looks like they should.
|
||||
autoload -U compinit
|
||||
compinit -i
|
||||
PROG=tea _CLI_ZSH_AUTOCOMPLETE_HACK=1 source /home/kellya/.config/tea/autocomplete.zsh
|
||||
|
|
Loading…
Reference in a new issue