Compare commits

..

No commits in common. '91e23be94fe21a03bab884848617002101d1419d' and 'c40d97090f612ba429003c36f0f7a5318c737422' have entirely different histories.

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

197
bashrc

@ -1,107 +1,134 @@
# # ~/.bashrc: executed by bash(1) for non-login shells.
# ~/.bashrc # see /usr/share/doc/bash/examples/startup-files (in the package bash-doc)
# # for examples
# If not running interactively, don't do anything # If not running interactively, don't do anything
[[ $- != *i* ]] && return case $- in
*i*) ;;
*) return;;
esac
# don't put duplicate lines or lines starting with space in the history.
# See bash(1) for more options
HISTCONTROL=ignoreboth
### Alias ### # append to the history file, don't overwrite it
shopt -s histappend
if [ -f ~/.bash_aliases ]; then # for setting history length see HISTSIZE and HISTFILESIZE in bash(1)
. ~/.bash_aliases HISTSIZE=1000
fi HISTFILESIZE=2000
alias ls='ls --color=auto' # check the window size after each command and, if necessary,
alias ll='ls -alF' # update the values of LINES and COLUMNS.
alias la='ls -A' shopt -s checkwinsize
alias lock='qdbus org.freedesktop.ScreenSaver /ScreenSaver Lock' # If set, the pattern "**" used in a pathname expansion context will
alias lock='import -window root /tmp/screenshot.png && convert /tmp/screenshot.png -blur 0x4 /tmp/screenshot.png && i3lock -i /tmp/screenshot.png' # 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)
[ -x /usr/bin/lesspipe ] && eval "$(SHELL=/bin/sh lesspipe)"
### Prompt ### # set variable identifying the chroot you work in (used in the prompt below)
if [ -z "${debian_chroot:-}" ] && [ -r /etc/debian_chroot ]; then
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
# 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
# print time # some more ls aliases
print_time() { alias ll='ls -alF'
printf "%*s%s\r" "$(tput cols)" "($(date +%H:%M))" alias la='ls -A'
} alias l='ls -CF'
# print cc compilater
print_cc() {
if [ ! -z "${CC}" ]
then
echo ${CC} | awk '{print " ["$1"]";}'
fi
}
# prompt sans heure # Add an "alert" alias for long running commands. Use like so:
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\]\$ ' # sleep 10; alert
# prompt avec heure 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$//'\'')"'
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\]\$ '
# Alias definitions.
# You may want to put all your additions into a separate file like
# ~/.bash_aliases, instead of adding them here directly.
# See /usr/share/doc/bash-doc/examples in the bash-doc package.
### Completion ### if [ -f ~/.bash_aliases ]; then
. ~/.bash_aliases
fi
# Use bash-completion, if available # enable programmable completion features (you don't need to enable
[[ $PS1 && -f /usr/share/bash-completion/bash_completion ]] && \ # this, if it's already enabled in /etc/bash.bashrc and /etc/profile
# sources /etc/bash.bashrc).
if ! shopt -oq posix; then
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
### 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 fi
} 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
@ -123,3 +150,9 @@ export BR2_DL_DIR=~/BR2_DL_DR
# \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_Down next_tab = <Primary>Page_Up
prev_tab = <Primary>Page_Up prev_tab = <Primary>Page_Down
[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 = Monospace 10 font = Noto Mono 8
foreground_color = "#ebdbb2" foreground_color = "#d3d7cf"
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.fr email = mickael.tansorier@openwide.fr
[core] [core]
editor = vim editor = vim
excludesfile = /home/micka/.gitignore excludesfile = /home/micka/.gitignore
@ -43,11 +43,10 @@
# rebase = true # rebase = true
[sendemail] [sendemail]
smtpuser = mickael@tansorier.fr smtpuser = mitan@smile.fr
smtpserver = ssl0.ovh.net smtpserver = smtp.smile.fr
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-]>
" Cursor color (#F0E68C) " Cursori (#F0E68C)
highlight Cursor guifg=black guibg=#F0E68C highlight Cursor guifg=black guibg=#F0E68C
" Cursor line " Cursor line
@ -31,10 +31,6 @@ 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
@ -46,7 +42,3 @@ 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