Merge branch 'master' of github.com:breard-r/dotfiles

This commit is contained in:
Rodolphe Breard 2019-03-23 11:02:13 +01:00
commit a997729b2a
4 changed files with 8 additions and 2 deletions

View file

@ -19,8 +19,8 @@ hash xscreensaver-command 2>/dev/null && alias lock='xscreensaver-command --lock
hash sqlmap 2>/dev/null && alias sqlmap='sqlmap --user-agent="Mozilla/5.0 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)"' hash sqlmap 2>/dev/null && alias sqlmap='sqlmap --user-agent="Mozilla/5.0 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)"'
hash sqlmap 2>/dev/null && alias sqlmap-tor='sqlmap --tor --tor-type=SOCKS5' hash sqlmap 2>/dev/null && alias sqlmap-tor='sqlmap --tor --tor-type=SOCKS5'
hash youtube-dl 2>/dev/null && alias audio-dl='youtube-dl -x --audio-quality 0 --audio-format "vorbis"' hash youtube-dl 2>/dev/null && alias audio-dl='youtube-dl -x --audio-quality 0 --audio-format "vorbis"'
hash chromium 2>/dev/null && alias chromium-tor='chromium --incognito --proxy-server="socks://localhost:9050"'
hash jmtpfs 2>/dev/null && alias mount_android='jmtpfs "/media/android"' hash jmtpfs 2>/dev/null && alias mount_android='jmtpfs "/media/android"'
hash kitty 2>/dev/null && alias kitty_ssh='kitty +kitten ssh'
if hash dig 2>/dev/null; then if hash dig 2>/dev/null; then
istheinternetonfire() { istheinternetonfire() {

View file

@ -1,6 +1,6 @@
font_family inconsolata font_family inconsolata
font_size 9 font_size 9
open_url_with firefox open_url_with firefox --private-window
enable_audio_bell no enable_audio_bell no
allow_remote_control no allow_remote_control no

View file

@ -1,6 +1,7 @@
[user] [user]
name = Rodolphe Breard name = Rodolphe Breard
email = rodolphe@what.tf email = rodolphe@what.tf
SigningKey = B229CCD5690091E7D5D6189F09BC23A1D5562635
[core] [core]
editor = vim editor = vim

5
.vimrc
View file

@ -49,6 +49,11 @@ nnoremap j gj
nnoremap k gk nnoremap k gk
" Fix a rendering issue with terminals without the bce capability
" https://sw.kovidgoyal.net/kitty/faq.html#using-a-color-theme-with-a-background-color-does-not-work-well-in-vim
let &t_ut=''
" Licenses " Licenses
let g:licenses_copyright_holders_name = $USER_NICKNAME let g:licenses_copyright_holders_name = $USER_NICKNAME
let g:licenses_authors_name = $USER_NICKNAME let g:licenses_authors_name = $USER_NICKNAME