Compare commits
2 commits
6f72f5cc1d
...
251b620d05
Author | SHA1 | Date | |
---|---|---|---|
251b620d05 | |||
63d5641c66 |
10 changed files with 60 additions and 1 deletions
43
files/.Xdefaults
Normal file
43
files/.Xdefaults
Normal file
|
@ -0,0 +1,43 @@
|
||||||
|
URxvt.perl-ext-common: default,matcher
|
||||||
|
URxvt.url-launcher: /usr/bin/firefox
|
||||||
|
URxvt.matcher.button: 1
|
||||||
|
URxvt.matcher.rend.0: fg5
|
||||||
|
|
||||||
|
! Irc
|
||||||
|
URxvt.urgentOnBell: True
|
||||||
|
|
||||||
|
URxvt.scrollBar: false
|
||||||
|
|
||||||
|
URxvt.font: xft:Monospace:size=10
|
||||||
|
URxvt.letterSpace: -1
|
||||||
|
|
||||||
|
! Copy-paste
|
||||||
|
URxvt.perl-ext-common: default,clipboard
|
||||||
|
URxvt.iso14755: False
|
||||||
|
URxvt.keysym.Shift-Control-C: perl:clipboard:copy
|
||||||
|
URxvt.keysym.Shift-Control-V: perl:clipboard:paste
|
||||||
|
|
||||||
|
!!!!!!!!! COLORS !!!!!!!!!!!
|
||||||
|
URxvt.depth: 32
|
||||||
|
! Background color
|
||||||
|
URxvt.background: [75]#000000
|
||||||
|
|
||||||
|
! Font color
|
||||||
|
URxvt*foreground: white
|
||||||
|
|
||||||
|
*color0: #2E3436
|
||||||
|
*color1: #a40000
|
||||||
|
*color2: #4E9A06
|
||||||
|
*color3: #C4A000
|
||||||
|
*color4: #3465A4
|
||||||
|
*color5: #75507B
|
||||||
|
*color6: #ce5c00
|
||||||
|
*color7: #babdb9
|
||||||
|
*color8: #555753
|
||||||
|
*color9: #EF2929
|
||||||
|
*color10: #8AE234
|
||||||
|
*color11: #FCE94F
|
||||||
|
*color12: #729FCF
|
||||||
|
*color13: #AD7FA8
|
||||||
|
*color14: #fcaf3e
|
||||||
|
*color15: #EEEEEC
|
|
@ -32,3 +32,4 @@ alias xclipboard='xclip -selection clipboard'
|
||||||
|
|
||||||
alias wine_pulse='PULSE_LATENCY_MSEC=60 wine'
|
alias wine_pulse='PULSE_LATENCY_MSEC=60 wine'
|
||||||
|
|
||||||
|
alias ssh-forgetful='ssh -o UserKnownHostsFile=/dev/null -o StrictHostKeyChecking=no'
|
||||||
|
|
|
@ -187,6 +187,8 @@ bindsym $mod+r mode "resize"
|
||||||
# Start i3bar to display a workspace bar (plus the system information i3status
|
# Start i3bar to display a workspace bar (plus the system information i3status
|
||||||
# finds out, if available)
|
# finds out, if available)
|
||||||
bar {
|
bar {
|
||||||
|
tray_output LVDS1
|
||||||
|
# position top
|
||||||
font pango:DejaVu Sans Mono, Awesome 8
|
font pango:DejaVu Sans Mono, Awesome 8
|
||||||
status_command i3status
|
status_command i3status
|
||||||
# tray_output primary
|
# tray_output primary
|
||||||
|
|
|
@ -48,3 +48,4 @@
|
||||||
palette = "#2e3436:#cc0000:#4e9a06:#ca5307:#3465a4:#75507b:#06989a:#d3d7cf:#555753:#ef2929:#8ae234:#ff751d:#657689:#ad7fa8:#34e2e2:#eeeeec"
|
palette = "#2e3436:#cc0000:#4e9a06:#ca5307:#3465a4:#75507b:#06989a:#d3d7cf:#555753:#ef2929:#8ae234:#ff751d:#657689:#ad7fa8:#34e2e2:#eeeeec"
|
||||||
scrollbar_position = hidden
|
scrollbar_position = hidden
|
||||||
show_titlebar = False
|
show_titlebar = False
|
||||||
|
[[with_titlebar]]
|
||||||
|
|
1
files/.gitignore
vendored
1
files/.gitignore
vendored
|
@ -1 +1,2 @@
|
||||||
*.swp
|
*.swp
|
||||||
|
*.syntastic_*_config
|
||||||
|
|
|
@ -29,3 +29,5 @@ chktex
|
||||||
backend
|
backend
|
||||||
Javascript
|
Javascript
|
||||||
frontend
|
frontend
|
||||||
|
spelllang=fr
|
||||||
|
Reprojection
|
||||||
|
|
Binary file not shown.
|
@ -1 +1,10 @@
|
||||||
typage
|
typage
|
||||||
|
copycat
|
||||||
|
contraposée
|
||||||
|
Adequacy
|
||||||
|
Villette
|
||||||
|
Bastian
|
||||||
|
Vandermonde
|
||||||
|
iid
|
||||||
|
PPV
|
||||||
|
d'overfitting
|
||||||
|
|
Binary file not shown.
|
@ -53,7 +53,7 @@ let g:syntastic_tex_checkers = [ 'chktex' ]
|
||||||
"" Python
|
"" Python
|
||||||
let g:syntastic_python_python_exec = '/usr/bin/python3'
|
let g:syntastic_python_python_exec = '/usr/bin/python3'
|
||||||
"" C++
|
"" C++
|
||||||
let g:syntastic_cpp_compiler_options = '-std=c++11'
|
let g:syntastic_cpp_compiler_options = '-std=c++14'
|
||||||
|
|
||||||
"" Disabled languages
|
"" Disabled languages
|
||||||
"let g:syntastic_mode_map = { 'passive_filetypes': ['python'] }
|
"let g:syntastic_mode_map = { 'passive_filetypes': ['python'] }
|
||||||
|
|
Loading…
Reference in a new issue