48 lines
1.3 KiB
Plaintext
48 lines
1.3 KiB
Plaintext
#hugogogo#
|
|
|
|
startup_message off
|
|
|
|
chdir $HOME/
|
|
|
|
#pour augmenter le scrollback de l'ecran
|
|
defscrollback 10000
|
|
|
|
#pour afficher une ligne avec des infos
|
|
hardstatus on
|
|
|
|
#pour qu'elle s'affiche en bas
|
|
hardstatus alwayslastline
|
|
|
|
#tout ce qui n'est pas precede de % s'affiche tel quel
|
|
#tout ce qui est entre {} formate le texte
|
|
# = format texte inchange
|
|
# KW couleur arriere bright black, couleur texte bright white
|
|
# %n numero de windows
|
|
# %t title de windows
|
|
# %= remplis les espaces vides
|
|
# %c current time
|
|
# %d day
|
|
# %m month
|
|
# %y year
|
|
hardstatus string "%{= KW}%n %t %=%c %D %d-%m-%y"
|
|
#hide hardstatus: ctrl-a f
|
|
bind f eval "hardstatus ignore"
|
|
#show hardstatus: ctrl-a f
|
|
bind F eval "hardstatus alwayslastline"
|
|
|
|
#screen open a new windows
|
|
# -t assigne un titre
|
|
# vim appel vim avec l'option -n pour eviter les .swp
|
|
screen -t shell vim -n $HOME/huhuhu_config/tutos/shell.txt
|
|
screen -t git vim -n $HOME/huhuhu_config/tutos/git.txt
|
|
screen -t screen vim -n $HOME/huhuhu_config/tutos/screen.txt
|
|
screen -t node vim -n $HOME/huhuhu_config/tutos/node.txt
|
|
screen -t react vim -n $HOME/huhuhu_config/tutos/react.txt
|
|
screen -t php vim -n $HOME/huhuhu_config/tutos/php.txt
|
|
screen -t sites vim -n $HOME/huhuhu_config/tutos/sites.txt
|
|
screen -t vim vim -n $HOME/huhuhu_config/tutos/vim.txt
|
|
|
|
screen
|
|
|
|
#hugogogo#
|