crash2
Geoffrey Frogeye 2019-06-11 06:28:58 +02:00
parent 0ee03a1173
commit c427ac3370
6 changed files with 43 additions and 11 deletions

View File

@ -1,2 +1 @@
auth-cookie = .config/pulse/esd-auth-cookie
cookie-file = .config/pulse/pulse-cookie cookie-file = .config/pulse/pulse-cookie

View File

@ -5,4 +5,12 @@
# #
export TIME_STYLE='+%Y-%m-%d %H:%M:%S' export TIME_STYLE='+%Y-%m-%d %H:%M:%S'
export LESS=-R
export LESS_TERMCAP_mb=$'\E[1;31m' # begin blink
export LESS_TERMCAP_md=$'\E[1;36m' # begin bold
export LESS_TERMCAP_me=$'\E[0m' # reset bold/blink
export LESS_TERMCAP_so=$'\E[01;44;33m' # begin reverse video
export LESS_TERMCAP_se=$'\E[0m' # reset reverse video
export LESS_TERMCAP_us=$'\E[1;32m' # begin underline
export LESS_TERMCAP_ue=$'\E[0m' # reset underline
eval $(dircolors --sh) eval $(dircolors --sh)

View File

@ -14,7 +14,7 @@ HISTFILE="$HOME/.cache/shell_history"
# Completion for existing commands # Completion for existing commands
alias cp="cp -i --reflink=auto" alias cp="cp -i --reflink=auto"
alias grep="grep --color=tty" alias grep="grep --color=auto"
alias dd='dd status=progress' alias dd='dd status=progress'
alias rm='rm -v --one-file-system' alias rm='rm -v --one-file-system'
alias free='free -m' alias free='free -m'

View File

@ -87,21 +87,33 @@ appendpath() {
*:"$1":*) ;; *:"$1":*) ;;
*) *)
# TODO Reverse order: I want the latest ones to supersedes the older ones
export PATH="${PATH:+$PATH:}$1" export PATH="${PATH:+$PATH:}$1"
;; ;;
esac esac
} }
appendpath '/usr/lib/ccache/bin' prependpath() {
appendpath "${GOPATH}/bin" if [ ! -d "$1" ]; then
appendpath "$HOME/.local/bin" return
appendpath "$HOME/.config/scripts" fi
case ":$PATH:" in
*:"$1":*) ;;
*)
export PATH="$1${PATH:+:$PATH}"
;;
esac
}
prependpath '/usr/lib/ccache/bin'
prependpath "${GOPATH}/bin"
prependpath "$HOME/.local/bin"
prependpath "$HOME/.config/scripts"
# If running on termux, load those extra scripts # If running on termux, load those extra scripts
[ -d /data/data/com.termux/ ] && ( [ -d /data/data/com.termux/ ] && (
appendpath "$HOME/.termux/scripts" prependpath "$HOME/.termux/scripts"
appendpath "$HOME/.termux/bin" prependpath "$HOME/.termux/bin"
) )
# For superseding commands with better ones if they are present # For superseding commands with better ones if they are present

View File

@ -169,7 +169,7 @@ chpwd() {
print -l $PWD ${(u)dirstack} >$DIRSTACKFILE print -l $PWD ${(u)dirstack} >$DIRSTACKFILE
} }
DIRSTACKSIZE=100 DIRSTACKSIZE=20
setopt AUTO_PUSHD PUSHD_SILENT PUSHD_TO_HOME setopt AUTO_PUSHD PUSHD_SILENT PUSHD_TO_HOME
setopt PUSHD_IGNORE_DUPS # Remove duplicate entries setopt PUSHD_IGNORE_DUPS # Remove duplicate entries

View File

@ -1,5 +1,7 @@
""" VIM SETTINGS """ """ VIM SETTINGS """
" From https://www.hillelwayne.com/post/intermediate-vim/
set encoding=utf-8 set encoding=utf-8
set title set title
@ -11,6 +13,9 @@ set scrolloff=10
set ignorecase set ignorecase
set smartcase set smartcase
if has('nvim')
set inccommand=nosplit " Shows you in realtime what changes your ex command should make.
endif
set incsearch set incsearch
@ -27,12 +32,20 @@ set backspace=indent,eol,start
set hidden set hidden
set updatetime=250 set updatetime=250
set lazyredraw " Do not redraw screen in the middle of a macro. Makes them complete faster.
set cursorcolumn set cursorcolumn
set splitbelow set splitbelow
set number relativenumber " Turn off relativenumber only for insert mode.
if has('nvim')
augroup every
autocmd!
au InsertEnter * set norelativenumber
au InsertLeave * set relativenumber
augroup END
endif
syntax enable syntax enable