diff options
author | Christian Segundo | 2024-01-20 23:56:23 +0100 |
---|---|---|
committer | Christian Segundo | 2024-01-20 23:56:23 +0100 |
commit | e62c2c3c95855232f0211459966a45a098f46a43 (patch) | |
tree | 15b8b4d03804d992c1f233b7d2ed41c06c332caa /public/zsh | |
parent | 31f926041eb5e27f6b4d139d43149fa848371e5c (diff) | |
download | dotfiles-e62c2c3c95855232f0211459966a45a098f46a43.tar.gz |
Diffstat (limited to 'public/zsh')
-rwxr-xr-x | public/zsh/.usr/local/bin/awk | 2 | ||||
-rwxr-xr-x | public/zsh/.usr/local/bin/date | 2 | ||||
-rwxr-xr-x | public/zsh/.usr/local/bin/docker | 3 | ||||
-rwxr-xr-x | public/zsh/.usr/local/bin/find | 2 | ||||
-rwxr-xr-x | public/zsh/.usr/local/bin/grep | 2 | ||||
-rwxr-xr-x | public/zsh/.usr/local/bin/sed | 2 | ||||
-rw-r--r-- | public/zsh/.zshenv | 2 | ||||
-rw-r--r-- | public/zsh/.zshrc | 6 |
8 files changed, 5 insertions, 16 deletions
diff --git a/public/zsh/.usr/local/bin/awk b/public/zsh/.usr/local/bin/awk deleted file mode 100755 index da814c3..0000000 --- a/public/zsh/.usr/local/bin/awk +++ /dev/null @@ -1,2 +0,0 @@ -#!/bin/bash -gawk "$@" diff --git a/public/zsh/.usr/local/bin/date b/public/zsh/.usr/local/bin/date deleted file mode 100755 index 0a50c4e..0000000 --- a/public/zsh/.usr/local/bin/date +++ /dev/null @@ -1,2 +0,0 @@ -#!/bin/bash -gdate "$@" diff --git a/public/zsh/.usr/local/bin/docker b/public/zsh/.usr/local/bin/docker deleted file mode 100755 index c16e0da..0000000 --- a/public/zsh/.usr/local/bin/docker +++ /dev/null @@ -1,3 +0,0 @@ -#!/bin/bash -#podman "$@" -docker "$@" diff --git a/public/zsh/.usr/local/bin/find b/public/zsh/.usr/local/bin/find deleted file mode 100755 index 0df7b89..0000000 --- a/public/zsh/.usr/local/bin/find +++ /dev/null @@ -1,2 +0,0 @@ -#!/bin/bash -gfind "$@" diff --git a/public/zsh/.usr/local/bin/grep b/public/zsh/.usr/local/bin/grep deleted file mode 100755 index e950d06..0000000 --- a/public/zsh/.usr/local/bin/grep +++ /dev/null @@ -1,2 +0,0 @@ -#!/bin/bash -ggrep "$@" diff --git a/public/zsh/.usr/local/bin/sed b/public/zsh/.usr/local/bin/sed deleted file mode 100755 index 1077e99..0000000 --- a/public/zsh/.usr/local/bin/sed +++ /dev/null @@ -1,2 +0,0 @@ -#!/bin/bash -gsed "$@" diff --git a/public/zsh/.zshenv b/public/zsh/.zshenv index 0a67ae5..3982588 100644 --- a/public/zsh/.zshenv +++ b/public/zsh/.zshenv @@ -65,6 +65,8 @@ export PATH="${HOME}/.usr/local/bin:${PATH}" # print("lddflags: " . $Config{lddlflags} . "\n"); export PERLBREW_CONFIGURE_FLAGS="-Dusrinc=/opt/homebrew/include -Dldflags=-L/opt/homebrew/lib -de" +#--configure-args="--cflags='-I/opt/homebrew/include -L/opt/homebrew/lib -de'" + # Otherwise I get weird GPG errors when signing commits #export GPG_TTY=$(tty) diff --git a/public/zsh/.zshrc b/public/zsh/.zshrc index 2d023b4..0a0074a 100644 --- a/public/zsh/.zshrc +++ b/public/zsh/.zshrc @@ -1,7 +1,7 @@ # ft=shell #zmodload zsh/zprof -source $HOMEBREW_PREFIX/share/antigen/antigen.zsh +source /etc/zsh/antigen.zsh antigen init $HOME/.antigenrc autoload -U compinit promptinit @@ -102,8 +102,8 @@ ZSH_AUTOSUGGEST_HIGHLIGHT_STYLE="fg=8" DISABLE_MAGIC_FUNCTIONS=true # FZF -source "${HOMEBREW_PREFIX}/opt/fzf/shell/completion.zsh" -source "${HOMEBREW_PREFIX}/opt/fzf/shell/key-bindings.zsh" +#source "${HOMEBREW_PREFIX}/opt/fzf/shell/completion.zsh" +#source "${HOMEBREW_PREFIX}/opt/fzf/shell/key-bindings.zsh" export FZF_TMUX_OPTS='-d 40%' bindkey "รง" fzf-cd-widget |