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)
# for examples
#
# ~/.bashrc
#
# If not running interactively, don't do anything
case $- in
*i*) ;;
*) return;;
esac
[[ $- != *i* ]] && return
# 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
shopt -s histappend
### Alias ###
# for setting history length see HISTSIZE and HISTFILESIZE in bash(1)
HISTSIZE=1000
HISTFILESIZE=2000
# 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
if [ -f ~/.bash_aliases ]; then
. ~/.bash_aliases
fi
# make less more friendly for non-text input files, see lesspipe(1)
[ -x /usr/bin/lesspipe ] && eval "$(SHELL=/bin/sh lesspipe)"
alias ls='ls --color=auto'
alias ll='ls -alF'
alias la='ls -A'
# 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
alias lock='qdbus org.freedesktop.ScreenSaver /ScreenSaver Lock'
alias lock='import -window root /tmp/screenshot.png && convert /tmp/screenshot.png -blur 0x4 /tmp/screenshot.png && i3lock -i /tmp/screenshot.png'
# 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
### Prompt ###
# Add git branch if its present to PS1
parse_git_branch() {
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
alias ll='ls -alF'
alias la='ls -A'
alias l='ls -CF'
# print time
print_time() {
printf "%*s%s\r" "$(tput cols)" "($(date +%H:%M))"
}
# Add an "alert" alias for long running commands. Use like so:
# sleep 10; alert
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$//'\'')"'
# print cc compilater
print_cc() {
if [ ! -z "${CC}" ]
then
echo ${CC} | awk '{print " ["$1"]";}'
fi
}
# 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.
# prompt sans heure
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\]\$ '
# prompt avec heure
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
# 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
### Completion ###
# Use bash-completion, if available
[[ $PS1 && -f /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********
# Palette foncée
# \033[01;30m\] : Noir
@ -150,9 +123,3 @@ fi
# \033[00;36m\] : Cyan
# \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_fg_color = "#000000"
[keybindings]
next_tab = <Primary>Page_Up
prev_tab = <Primary>Page_Down
next_tab = <Primary>Page_Down
prev_tab = <Primary>Page_Up
[layouts]
[[default]]
[[[child1]]]
@ -18,9 +18,9 @@
[plugins]
[profiles]
[[default]]
background_color = "#232627"
cursor_color = "#aaaaaa"
font = Noto Mono 8
foreground_color = "#d3d7cf"
palette = "#000000:#aa0000:#00aa00:#aa5500:#0000aa:#aa00aa:#00aaaa:#e0e4dc:#555555:#ff5555:#55ff55:#ffff55:#5555ff:#ff55ff:#55ffff:#ffffff"
font = Monospace 10
foreground_color = "#ebdbb2"
scrollback_lines = 4096
use_system_font = False

@ -1,6 +1,6 @@
[user]
name = Mickaël Tansorier
email = mickael.tansorier@openwide.fr
email = mickael@tansorier.fr
[core]
editor = vim
excludesfile = /home/micka/.gitignore
@ -43,10 +43,11 @@
# rebase = true
[sendemail]
smtpuser = mitan@smile.fr
smtpserver = smtp.smile.fr
smtpuser = mickael@tansorier.fr
smtpserver = ssl0.ovh.net
smtpencryption = ssl
smtpserverport = 465
[gui]
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

10
vimrc

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

Loading…
Cancel
Save