Select the types of activity you want to include in your feed.
Personal dotfiles for Linux, mostly for Nixpkgs/NixOS-based and Termux setups. Mirrored using GitLab's push mirroring feature.
gitlab.com/andreijiroh-dev/dotfiles
···33# for examples
4455# If not running interactively, don't do anything
66-case $- in
77- *i*) ;;
88- *) return;;
99-esac
66+#case $- in
77+# *i*) ;;
88+# *) return;;
99+#esac
10101111# don't put duplicate lines or lines starting with space in the history.
1212# See bash(1) for more options
···3030# make less more friendly for non-text input files, see lesspipe(1)
3131#[ -x /usr/bin/lesspipe ] && eval "$(SHELL=/bin/sh lesspipe)"
32323333-# set variable identifying the chroot you work in (used in the prompt below)
3434-if [ -z "${debian_chroot:-}" ] && [ -r /etc/debian_chroot ]; then
3535- debian_chroot=$(cat /etc/debian_chroot)
3636-fi
3737-3833# set a fancy prompt (non-color, unless we know we "want" color)
3934case "$TERM" in
4035 xterm-color|*-256color) color_prompt=yes;;
···5550 color_prompt=
5651 fi
5752fi
5858-5959-if [ "$color_prompt" = yes ]; then
6060- PS1='${debian_chroot:+($debian_chroot)}\[\033[01;32m\]\u@\h\[\033[00m\]:\[\033[01;34m\]\w\[\033[00m\]\$ '
6161-else
6262- PS1='${debian_chroot:+($debian_chroot)}\u@\h:\w\$ '
6363-fi
6464-unset color_prompt force_color_prompt
65536654# If this is an xterm set the title to user@host:dir
6755case "$TERM" in
···7260 ;;
7361esac
74627575-# enable color support of ls and also add handy aliases
7676-if [ -x /usr/bin/dircolors ]; then
7777- test -r ~/.dircolors && eval "$(dircolors -b ~/.dircolors)" || eval "$(dircolors -b)"
7878- alias ls='ls --color=auto'
7979- #alias dir='dir --color=auto'
8080- #alias vdir='vdir --color=auto'
8181-8282- #alias grep='grep --color=auto'
8383- #alias fgrep='fgrep --color=auto'
8484- #alias egrep='egrep --color=auto'
8585-fi
8686-8763# colored GCC warnings and errors
8888-#export GCC_COLORS='error=01;31:warning=01;35:note=01;36:caret=01;32:locus=01:quote=01'
8989-9090-# some more ls aliases
9191-#alias ll='ls -l'
9292-#alias la='ls -A'
9393-#alias l='ls -CF'
6464+export GCC_COLORS='error=01;31:warning=01;35:note=01;36:caret=01;32:locus=01:quote=01'
94659566# Alias definitions.
9667# You may want to put all your additions into a separate file like
+11
.config/bash/completions/gopass.bash
···11+_gopass_bash_autocomplete() {
22+ local cur opts base
33+ COMPREPLY=()
44+ cur="${COMP_WORDS[COMP_CWORD]}"
55+ opts=$( ${COMP_WORDS[@]:0:$COMP_CWORD} --generate-bash-completion )
66+ local IFS=$'\n'
77+ COMPREPLY=( $(compgen -W "${opts}" -- ${cur}) )
88+ return 0
99+ }
1010+1111+complete -F _gopass_bash_autocomplete gopass