mirror of
https://github.com/aquatix/dotfiles.git
synced 2025-12-06 19:25:11 +01:00
Import
This commit is contained in:
47
.bash_aliases
Normal file
47
.bash_aliases
Normal file
@@ -0,0 +1,47 @@
|
||||
alias ls='ls --color=auto'
|
||||
alias ll='ls -la'
|
||||
|
||||
alias nano='nano -w'
|
||||
alias screenie='xwd -screen > screenie'
|
||||
|
||||
# 2007-04-01
|
||||
alias rattler='ssh -l msn290 rattler.few.vu.nl'
|
||||
|
||||
# 2007-04-11
|
||||
alias galjas='ssh -l msn290 galjas.cs.vu.nl'
|
||||
|
||||
# 2007-07-23
|
||||
alias rattler_proxy='ssh -L 8080:www-proxy.cs.vu.nl:8080 msn290@rattler.few.vu.nl'
|
||||
alias testie_erik='ssh -p 2222 -X testie@pi.homeunix.net'
|
||||
|
||||
# 2007-08-08
|
||||
alias vim='vim -p'
|
||||
|
||||
# 2007-10-05
|
||||
alias kits='ssh msn290@kits.cs.vu.nl'
|
||||
alias kits_proxy='ssh -L 8080:www-proxy.cs.vu.nl:8080 msn290@kits.cs.vu.nl'
|
||||
|
||||
# 2012-08-24 / 2008-01-20
|
||||
alias higgs='ssh higgs'
|
||||
|
||||
# 2008-07-20
|
||||
alias backuppc='ssh aquatix@bhaile.murf.nl -L 8888:vacdepot.bhaile.murf.nl:80'
|
||||
alias backuppc_browse='x-www-browser http://localhost:8888/backuppc/'
|
||||
|
||||
# 2009-03-30
|
||||
alias soleusconsole='ssh aquatix@console.soleus.nu'
|
||||
|
||||
# 2009-11-25
|
||||
#alias U='svn update'
|
||||
|
||||
# 2012-08-24 / 2010-04-03
|
||||
alias medusa='ssh medusa'
|
||||
|
||||
# 2012-08-24 / 2012-03-23
|
||||
alias devteam='ssh devteam'
|
||||
|
||||
function fuck() {
|
||||
if killall -9 "$2"; then
|
||||
echo ; echo " (╯°□°)╯︵$(echo "$2"|toilet -f term -F rotate)"; echo
|
||||
fi
|
||||
}
|
||||
9
.hgignore
Normal file
9
.hgignore
Normal file
@@ -0,0 +1,9 @@
|
||||
syntax: glob
|
||||
*.orig
|
||||
*.rej
|
||||
*~
|
||||
*.o
|
||||
tests/*.err
|
||||
|
||||
syntax: regexp
|
||||
.*\#.*\#$
|
||||
11
.hgrc
Normal file
11
.hgrc
Normal file
@@ -0,0 +1,11 @@
|
||||
[ui]
|
||||
username = Michiel Scholten <michiel@aquariusoft.org>
|
||||
|
||||
[extensions]
|
||||
graphlog =
|
||||
mercurial_keyring = /home/mbscholt/bin/hg/mercurial_keyring.py
|
||||
convert =
|
||||
hgext.bookmarks =
|
||||
hgext.git =
|
||||
|
||||
prompt = /home/mbscholt/bin/hg/hg-prompt/prompt.py
|
||||
40
.vimrc
Normal file
40
.vimrc
Normal file
@@ -0,0 +1,40 @@
|
||||
" set the runtime path to include Vundle and initialize
|
||||
set rtp+=~/.vim/bundle/Vundle.vim
|
||||
call vundle#begin()
|
||||
|
||||
" let Vundle manage Vundle, required
|
||||
Plugin 'gmarik/Vundle.vim'
|
||||
|
||||
Plugin 'bling/vim-airline'
|
||||
Plugin 'bling/vim-bufferline'
|
||||
Plugin 'tpope/vim-pathogen'
|
||||
Plugin 'mhinz/vim-signify'
|
||||
Plugin 'jnurmine/Zenburn.git'
|
||||
|
||||
" All of your Plugins must be added before the following line
|
||||
call vundle#end() " required
|
||||
filetype plugin indent on " required
|
||||
|
||||
|
||||
set number
|
||||
syntax on
|
||||
" enable words completion
|
||||
set dictionary+=/usr/share/dict/words
|
||||
" use ctrl-n ctrl-n instead of ctrl-x ctrl-k
|
||||
set complete-=k complete+=k
|
||||
|
||||
" 2006-04-24
|
||||
set smartcase
|
||||
|
||||
" 2008-04-14 with the if-statement added at 2008-11-19
|
||||
if &term == "xterm" || &term == "screen-bce"
|
||||
set t_Co=256
|
||||
colorscheme zenburn
|
||||
|
||||
" create a bar for airline
|
||||
set laststatus=2
|
||||
let g:airline_powerline_fonts = 1
|
||||
endif
|
||||
|
||||
" paste and autoindent
|
||||
set pastetoggle=<F10>
|
||||
Reference in New Issue
Block a user