Clone shirenn's configuration
This commit is contained in:
41
roles/cli-utils/templates/bash_aliases.j2
Normal file
41
roles/cli-utils/templates/bash_aliases.j2
Normal file
@ -0,0 +1,41 @@
|
||||
#!/bin/bash
|
||||
|
||||
# enable color support of ls and also add handy aliases
|
||||
if [ -x /usr/bin/dircolors ]; then
|
||||
test -r ~/.dircolors && eval "$(dircolors -b ~/.dircolors)" || eval "$(dircolors -b)"
|
||||
alias ls='ls --color=auto'
|
||||
|
||||
alias grep='grep --color=always'
|
||||
alias fgrep='fgrep --color=always'
|
||||
alias egrep='egrep --color=always'
|
||||
fi
|
||||
|
||||
# some more ls aliases
|
||||
alias ll='ls -alF'
|
||||
alias la='ls -A'
|
||||
alias l='ls -CF'
|
||||
|
||||
alias cd='cd -P'
|
||||
alias ip='ip -c'
|
||||
|
||||
alias less='less -R'
|
||||
|
||||
alias toilet='toilet -f mono12 --rainbow'
|
||||
|
||||
alias startx='exec startx'
|
||||
|
||||
alias gst='git status -s'
|
||||
|
||||
alias proxy='ssh -q -C -N -D 8080'
|
||||
alias wip='watch -c ip -c'
|
||||
|
||||
alias vi=vim
|
||||
alias cat=bat
|
||||
|
||||
# Add some emoji aliases
|
||||
alias 🦇=bat
|
||||
alias 🐈=cat
|
||||
alias 🚆=sl
|
||||
alias 🚂=sl
|
||||
alias 🚅=sl
|
||||
alias 💿=cd
|
57
roles/cli-utils/templates/bashrc.j2
Normal file
57
roles/cli-utils/templates/bashrc.j2
Normal file
@ -0,0 +1,57 @@
|
||||
[ -z "$PS1" ] && return
|
||||
|
||||
HISTCONTROL=ignoredups:ignorespace
|
||||
HISTFILE=/dev/null
|
||||
|
||||
# check the window size after each command and, if necessary,
|
||||
# update the values of LINES and COLUMNS.
|
||||
shopt -s checkwinsize
|
||||
|
||||
# make less more friendly for non-text input files, see lesspipe(1)
|
||||
[ -x /usr/bin/lesspipe.sh ] && eval "$(SHELL=/bin/sh lesspipe.sh)"
|
||||
|
||||
|
||||
PROMPT_COMMAND=__prompt
|
||||
|
||||
__prompt() {
|
||||
retline=$?
|
||||
gitline=$(git branch 2> /dev/null | grep '^*' | awk '{print $2}')
|
||||
|
||||
# COLORS
|
||||
RED='\[\e[01;31m\]'
|
||||
GREEN='\[\e[01;32m\]'
|
||||
ORANGE='\[\e[01;33m\]'
|
||||
BLUE='\[\e[01;34m\]'
|
||||
NC='\[\e[0m\]'
|
||||
|
||||
PS1=""
|
||||
PS1+="$GREEN\u@\h$NC" # user@host
|
||||
PS1+=" $BLUE\W$NC" # pwd
|
||||
[ -z $gitline ] || PS1+=" $ORANGE$gitline$NC"
|
||||
PS1="[ $PS1 ]"
|
||||
[ $retline -ne 0 ] && PS1+=" $RED$retline$NC "
|
||||
PS1+="\$ "
|
||||
return $ret
|
||||
}
|
||||
|
||||
if [ -f ~/.config/bash/bash_aliases ]; then
|
||||
. ~/.config/bash/bash_aliases
|
||||
fi
|
||||
|
||||
rm -rf {{ cliutils.bash.bogus_dirs | join(" ") }}
|
||||
|
||||
|
||||
if [ -f /usr/share/bash-completion/bash_completion ]; then
|
||||
. /usr/share/bash-completion/bash_completion
|
||||
fi
|
||||
|
||||
export XDG_CONFIG_HOME=~/.config/
|
||||
grep -q '/\.local/bin'<<<$PATH || export PATH=$PATH:~/.local/bin/
|
||||
|
||||
## REMOVING LESSHST
|
||||
LESSHISTFILE=/dev/null
|
||||
|
||||
export EDITOR='vim'
|
||||
|
||||
export PASSWORD_STORE_ENABLE_EXTENSIONS=true
|
||||
|
13
roles/cli-utils/templates/gitconfig.j2
Normal file
13
roles/cli-utils/templates/gitconfig.j2
Normal file
@ -0,0 +1,13 @@
|
||||
[user]
|
||||
email = {{ cliutils.git.email }}
|
||||
name = {{ cliutils.git.name }}
|
||||
signingkey = {{ cliutils.git.signingkey }}
|
||||
[commit]
|
||||
gpgsign = true
|
||||
[core]
|
||||
autocrlf = input
|
||||
editor = vim
|
||||
[format]
|
||||
signoff = true
|
||||
[pull]
|
||||
ff = only
|
1
roles/cli-utils/templates/inputrc.j2
Normal file
1
roles/cli-utils/templates/inputrc.j2
Normal file
@ -0,0 +1 @@
|
||||
set mark-symlinked-directories on
|
25
roles/cli-utils/templates/tmux.conf.j2
Normal file
25
roles/cli-utils/templates/tmux.conf.j2
Normal file
@ -0,0 +1,25 @@
|
||||
unbind r
|
||||
bind r source-file ~/.tmux.conf
|
||||
|
||||
set -g mouse on
|
||||
|
||||
|
||||
# use the vim motion keys to move between panes
|
||||
bind h select-pane -L
|
||||
bind j select-pane -D
|
||||
bind k select-pane -U
|
||||
bind l select-pane -R
|
||||
|
||||
setw -g mode-keys vi
|
||||
bind < resize-pane -L 10
|
||||
bind > resize-pane -R 10
|
||||
bind - resize-pane -D 10
|
||||
bind + resize-pane -U 10
|
||||
|
||||
bind-key -T copy-mode-vi 'v' send -X begin-selection;
|
||||
bind-key -T copy-mode-vi 'V' send -X select-line;
|
||||
bind-key -T copy-mode-vi 'r' send -X rectangle-toggle;
|
||||
bind-key -T copy-mode-vi 'y' send -X copy-pipe-and-cancel 'xclip -in -selection clipboard'
|
||||
|
||||
set -g base-index 1
|
||||
set -g status-bg colour41
|
Reference in New Issue
Block a user