Compare commits

...

10 Commits

@ -1 +1,16 @@
# configs # configs
Differents config file for linux system
## BASH
- bashrc
## GIT
- gitconfig
- gitignore
## VIM
- vimrc
## TERMINATOR
- config/terminator/config

199
bashrc

@ -1,135 +1,108 @@
# ~/.bashrc: executed by bash(1) for non-login shells. #
# see /usr/share/doc/bash/examples/startup-files (in the package bash-doc) # ~/.bashrc
# for examples #
# If not running interactively, don't do anything # If not running interactively, don't do anything
case $- in [[ $- != *i* ]] && return
*i*) ;;
*) return;;
esac
# don't put duplicate lines or lines starting with space in the history.
# See bash(1) for more options
HISTCONTROL=ignoreboth
# append to the history file, don't overwrite it ### Alias ###
shopt -s histappend
# for setting history length see HISTSIZE and HISTFILESIZE in bash(1) if [ -f ~/.bash_aliases ]; then
HISTSIZE=1000 . ~/.bash_aliases
HISTFILESIZE=2000 fi
# check the window size after each command and, if necessary,
# update the values of LINES and COLUMNS.
shopt -s checkwinsize
# If set, the pattern "**" used in a pathname expansion context will
# match all files and zero or more directories and subdirectories.
#shopt -s globstar
# make less more friendly for non-text input files, see lesspipe(1) alias ls='ls --color=auto'
[ -x /usr/bin/lesspipe ] && eval "$(SHELL=/bin/sh lesspipe)" alias ll='ls -alF'
alias la='ls -A'
# set variable identifying the chroot you work in (used in the prompt below) alias lock='qdbus org.freedesktop.ScreenSaver /ScreenSaver Lock'
if [ -z "${debian_chroot:-}" ] && [ -r /etc/debian_chroot ]; then alias lock='import -window root /tmp/screenshot.png && convert /tmp/screenshot.png -blur 0x4 /tmp/screenshot.png && i3lock -i /tmp/screenshot.png'
debian_chroot=$(cat /etc/debian_chroot)
fi
# set a fancy prompt (non-color, unless we know we "want" color)
case "$TERM" in
# term-color) color_prompt=yes;;
xterm|term-color) color_prompt=yes;;
esac
# uncomment for a colored prompt, if the terminal has the capability; turned
# off by default to not distract the user: the focus in a terminal window
# should be on the output of commands, not on the prompt
force_color_prompt=yes
if [ -n "$force_color_prompt" ]; then
if [ -x /usr/bin/tput ] && tput setaf 1 >&/dev/null; then
# We have color support; assume it's compliant with Ecma-48
# (ISO/IEC-6429). (Lack of such support is extremely rare, and such
# a case would tend to support setf rather than setaf.)
color_prompt=yes
else
color_prompt=
fi
fi
if [ "$color_prompt" = yes ]; then ### Prompt ###
# PS1='${debian_chroot:+($debian_chroot)}\[\033[01;32m\]\u@\h\[\033[00m\]:\[\033[01;34m\]\w\[\033[00m\]\$ '
PS1='\[\033[00;35m\][${debian_chroot:+($debian_chroot)}\u@\h\[\033[00;35m\]:\[\033[00;36m\]\w\[\033[00;35m\]]\n\[\033[00m\]\$ '
else
PS1='${debian_chroot:+($debian_chroot)}\u@\h:\w\$ '
fi
# Add git branch if its present to PS1 # Add git branch if its present to PS1
parse_git_branch() { parse_git_branch() {
git branch 2> /dev/null | sed -e '/^[^*]/d' -e 's/* \(.*\)/(\1)/' git branch 2> /dev/null | sed -e '/^[^*]/d' -e 's/* \(.*\)/(\1)/'
} }
if [ "$color_prompt" = yes ]; then
#PS1='${debian_chroot:+($debian_chroot)}\[\033[01;32m\]\u@\h\[\033[00m\]:\[\033[01;34m\]\w\[\033[01;31m\]$(parse_git_branch)\[\033[00m\]\$ '
PS1='\[\033[00;35m\][${debian_chroot:+($debian_chroot)}\u@\h\[\033[00;35m\]:\[\033[00;36m\]\w\[\033[00;35m\]]\[\033[00;31m\]$(parse_git_branch)\n\[\033[00m\]\$ '
else
PS1='${debian_chroot:+($debian_chroot)}\u@\h:\w$(parse_git_branch)\$ '
fi
unset color_prompt force_color_prompt
# If this is an xterm set the title to user@host:dir
case "$TERM" in
xterm*|rxvt*)
PS1="\[\e]0;${debian_chroot:+($debian_chroot)}\u@\h: \w\a\]$PS1"
;;
*)
;;
esac
# 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 dir='dir --color=auto'
#alias vdir='vdir --color=auto'
alias grep='grep --color=auto'
alias fgrep='fgrep --color=auto'
alias egrep='egrep --color=auto'
# git log with color tiny
alias gl='git log --oneline --all --graph --decorate'
fi
# some more ls aliases # print time
alias ll='ls -alF' print_time() {
alias la='ls -A' printf "%*s%s\r" "$(tput cols)" "($(date +%H:%M))"
alias l='ls -CF' }
# Add an "alert" alias for long running commands. Use like so: # print cc compilater
# sleep 10; alert print_cc() {
alias alert='notify-send --urgency=low -i "$([ $? = 0 ] && echo terminal || echo error)" "$(history|tail -n1|sed -e '\''s/^\s*[0-9]\+\s*//;s/[;&|]\s*alert$//'\'')"' if [ ! -z "${CC}" ]
then
echo ${CC} | awk '{print " ["$1"]";}'
fi
}
# Alias definitions. # prompt sans heure
# You may want to put all your additions into a separate file like PS1='\[\033[00;35m\][${debian_chroot:+($debian_chroot)}\u@\h\[\033[00;35m\]:\[\033[00;36m\]\w\[\033[00;35m\]]\[\033[00;31m\]$(parse_git_branch)\[\033[00;34m\]$(print_cc)\n\[\033[00m\]\$ '
# ~/.bash_aliases, instead of adding them here directly. # prompt avec heure
# See /usr/share/doc/bash-doc/examples in the bash-doc package. PS1='\[\033[00;33m\]$(print_time)\[\033[00;35m\][${debian_chroot:+($debian_chroot)}\u@\h\[\033[00;35m\]:\[\033[00;36m\]\w\[\033[00;35m\]]\[\033[00;31m\]$(parse_git_branch)\[\033[00;34m\]$(print_cc)\n\[\033[00m\]\$ '
if [ -f ~/.bash_aliases ]; then
. ~/.bash_aliases
fi
# enable programmable completion features (you don't need to enable ### Completion ###
# this, if it's already enabled in /etc/bash.bashrc and /etc/profile
# sources /etc/bash.bashrc). # Use bash-completion, if available
if ! shopt -oq posix; then [[ $PS1 && -f /usr/share/bash-completion/bash_completion ]] && \
if [ -f /usr/share/bash-completion/bash_completion ]; then
. /usr/share/bash-completion/bash_completion . /usr/share/bash-completion/bash_completion
elif [ -f /etc/bash_completion ]; then
. /etc/bash_completion
fi
fi
### Variable ###
# For yaourt/pacman
export VISUAL="vim"
export EDITOR="vim"
### Functions ###
# convert hexadecimal to binary and vice-versa
h2d(){
echo "ibase=16; $@"|bc
}
d2h(){
echo "obase=16; $@"|bc
}
findrepo(){
if [ ! -z "$1" ]; then
find "$1" -not -path "*/\.git/*";
else
find . -not -path "*/\.git/*";
fi
}
findrepofiles(){
if [ ! -z "$1" ]; then
find "$1" -type f -not -path "*/\.git/*";
else
find . -type f -not -path "*/\.git/*";
fi
}
# kill baloo utils
baloo_clean(){
sudo killall baloo_file
sudo mv /usr/bin/baloo_file /usr/bin/baloo_file.bak
sudo echo '#!/bin/sh' > /usr/bin/baloo_file
}
# print battery level
battery(){
upower -i /org/freedesktop/UPower/devices/battery_BAT0 | grep percentage
}
### Buildroot override ###
export BR2_DL_DIR=~/BR2_DL_DR
# ********COLOR******** # ********COLOR********
# Palette foncée # Palette foncée
# \033[01;30m\] : Noir # \033[01;30m\] : Noir
@ -150,9 +123,3 @@ fi
# \033[00;36m\] : Cyan # \033[00;36m\] : Cyan
# \033[00;37m\] : Gris # \033[00;37m\] : Gris
PATH=$PATH:/opt/Xilinx/13.2/ISE_DS/ISE/bin/lin64/
export PATH
# Pour yaourt/pacman
export VISUAL="vim"

@ -5,8 +5,8 @@
title_transmit_bg_color = "#8faeff" title_transmit_bg_color = "#8faeff"
title_transmit_fg_color = "#000000" title_transmit_fg_color = "#000000"
[keybindings] [keybindings]
next_tab = <Primary>Page_Up next_tab = <Primary>Page_Down
prev_tab = <Primary>Page_Down prev_tab = <Primary>Page_Up
[layouts] [layouts]
[[default]] [[default]]
[[[child1]]] [[[child1]]]
@ -18,9 +18,9 @@
[plugins] [plugins]
[profiles] [profiles]
[[default]] [[default]]
background_color = "#232627"
cursor_color = "#aaaaaa" cursor_color = "#aaaaaa"
font = Noto Mono 8 font = Monospace 10
foreground_color = "#d3d7cf" foreground_color = "#ebdbb2"
palette = "#000000:#aa0000:#00aa00:#aa5500:#0000aa:#aa00aa:#00aaaa:#e0e4dc:#555555:#ff5555:#55ff55:#ffff55:#5555ff:#ff55ff:#55ffff:#ffffff"
scrollback_lines = 4096 scrollback_lines = 4096
use_system_font = False use_system_font = False

@ -1,6 +1,6 @@
[user] [user]
name = Mickaël Tansorier name = Mickaël Tansorier
email = mickael.tansorier@openwide.fr email = mickael@tansorier.fr
[core] [core]
editor = vim editor = vim
excludesfile = /home/micka/.gitignore excludesfile = /home/micka/.gitignore
@ -43,10 +43,11 @@
# rebase = true # rebase = true
[sendemail] [sendemail]
smtpuser = mitan@smile.fr smtpuser = mickael@tansorier.fr
smtpserver = smtp.smile.fr smtpserver = ssl0.ovh.net
smtpencryption = ssl smtpencryption = ssl
smtpserverport = 465 smtpserverport = 465
[gui] [gui]
fontui = -family \"DejaVu Sans\" -size 10 -weight normal -slant roman -underline 0 -overstrike 0 fontui = -family \"DejaVu Sans\" -size 10 -weight normal -slant roman -underline 0 -overstrike 0
fontdiff = -family \"DejaVu Sans Mono\" -size 10 -weight normal -slant roman -underline 0 -overstrike 0 fontdiff = -family \"DejaVu Sans Mono\" -size 10 -weight normal -slant roman -underline 0 -overstrike 0

10
vimrc

@ -19,7 +19,7 @@ set guifont=Monospace\ 9
" alias, tags enter with 't' " alias, tags enter with 't'
map t <C-]> map t <C-]>
" Cursori (#F0E68C) " Cursor color (#F0E68C)
highlight Cursor guifg=black guibg=#F0E68C highlight Cursor guifg=black guibg=#F0E68C
" Cursor line " Cursor line
@ -31,6 +31,10 @@ augroup CursorLine
au WinLeave * setlocal nocursorline au WinLeave * setlocal nocursorline
augroup END augroup END
" 80 col line
highlight ColorColumn ctermbg=235 guibg=#242424
set colorcolumn=80
" autocompletion " autocompletion
set wildmenu set wildmenu
set wildmode=longest:list,full set wildmode=longest:list,full
@ -42,3 +46,7 @@ cabbrev E Explore
set tabstop=4 set tabstop=4
" " when indenting with '>', use 4 spaces width " " when indenting with '>', use 4 spaces width
set shiftwidth=4 set shiftwidth=4
" force tab caratctere instead of space
set noexpandtab
"autocmd vimenter * NERDTree

Loading…
Cancel
Save