diff options
author | Marvin Borner | 2022-07-31 21:24:56 +0200 |
---|---|---|
committer | Marvin Borner | 2022-07-31 21:24:56 +0200 |
commit | 600de714ba13c1ccd54357554898db909de5af81 (patch) | |
tree | 95f416ad889878de9b782533c167b585e42e8262 /.okshrc | |
parent | a56b6a121b31b82dcf7279e6eea60bbca1852fc5 (diff) |
Update
Diffstat (limited to '.okshrc')
-rw-r--r-- | .okshrc | 46 |
1 files changed, 0 insertions, 46 deletions
diff --git a/.okshrc b/.okshrc deleted file mode 100644 index ac1adbe..0000000 --- a/.okshrc +++ /dev/null @@ -1,46 +0,0 @@ -export CC=gcc -export EDITOR=vim -export VISUAL=$EDITOR -export TERM=st -export TERMINAL=$TERM -export PAGER=less -export BROWSER=firefox -export SSH_ASKPASS=ssh-askpass -export PS1='[\W] ' - -export LC_CTYPE="en_US.UTF-8" - -export HISTFILE=$HOME/.history -export HISTSIZE=1000000 -export HISTFILESIZE=1000000 -export HISTCONTROL=ignoredups:erasedups - -export LESS='-iMRS -x8' -export CLICOLOR=1 - -export UNCRUSTIFY_CONFIG=$HOME/.uncrustify.cfg - -umask 027 - -alias ls='ls --color=auto' -alias vi='vim' -alias v='vim' -alias zat='setsid -f zathura' - -alias gi='git init' -alias gs='git status' -alias gc='git commit' -alias ga='git add' -alias gp='git push' -alias gd='git diff' -alias gr='git reset' -alias gl='git log' -alias gm='git mv' -alias gch='git checkout' - -set -o noclobber # no > misuse; >| instead -set -o nounset -set -o notify -set -o vi -set -o viraw -set -o posix |