Dotfiles

.bash_aliases

alias ll='ls -lha'
alias l='ls -lh'
alias la='ls -lha'
alias du='du -h'
alias df='df -h'
alias rm='rm -i'
alias ln='ln -i'
alias cp='cp -i'
alias mv='mv -i'
alias free='free -mt'
alias cal='cal -m'
alias share='python -c "import SimpleHTTPServer;SimpleHTTPServer.test()"'
alias vmware='sudo vmware'
alias stickon='mount /dev/sdb1'
alias stickoff='umount /media/usbstick'

.fonts.conf

<?xml version="1.0" ?>
<!DOCTYPE fontconfig SYSTEM "fonts.dtd">
<fontconfig>
<match target="font">
        <edit name="autohint" mode="assign">
                <bool>true</bool>
        </edit>
</match>
 
<match target="font">
        <test qual="all" name="rgba">
                <const>unknown</const>
        </test>
        <edit name="rgba" mode="assign">
                <const>rgb</const>
        </edit>
</match>
</fontconfig>

SciTE (linux)

view.whitespace=0
view.eol=0
ensure.final.line.end=1
ensure.consistent.line.ends=1
autocompleteword.automatic=1

tabsize=4
indent.size=4
use.tabs=0

eol.auto=1

style.*.32=$(font.base),back:#DCDCDC,fore:#000000

api.*.py=/home/andrer/projekte/python/python.api
autocomplete.choose.singe=1
autocomplete.python.ignorecase=0
autocomplete.python.start.characters=.
autocomplete.python.fillups=(
calltip.python.ignorecase=0
calltip.python.word.characters=._$(chars.alpha)$(chars.numeric)

font.base=font:!Consolas,size:9
font.small=font:!Consolas,size:9
font.comment=font:!Consolas,size:9
font.code.comment.box=$(font.comment)
font.code.comment.line=$(font.comment)
font.code.comment.doc=$(font.comment)
font.text=font:!Consolas,size:9
font.text.comment=font:!Serif,size:9
font.embedded.base=font:!Serif,size:9
font.embedded.comment=font:!Serif,size:9
font.monospace=font:!Consolas,size:9
font.vbs=font:!Consolas,size:9

SciTE (Windows)

toolbar.visible=1
tabbar.visible=1
tabbar.hide.one=1
tabbar.multiline=1
statusbar.visible=1

title.full.path=1
title.show.buffers=1
buffers=25

view.whitespace=0
view.eol=0
ensure.final.line.end=1
ensure.consistent.line.ends=1
autocompleteword.automatic=1

line.margin.visible=1
line.margin.width=4

tabsize=4
indent.size=4
use.tabs=0

eol.auto=1

style.*.32=$(font.base),back:#DCDCDC,fore:#000000

autocomplete.choose.singe=1
autocomplete.python.ignorecase=1
autocomplete.python.start.characters=.
autocomplete.python.fillups=(
calltip.python.ignorecase=1
calltip.python.word.characters=._$(chars.alpha)$(chars.numeric)

font.base=font:Consolas,size:10
font.small=font:Consolas,size:10
font.comment=font:Consolas,italics,size:10
font.code.comment.box=$(font.comment)
font.code.comment.line=$(font.comment)
font.code.comment.doc=$(font.comment)
font.text=font:Consolas,size:10
font.text.comment=font:Serif,size:10
font.embedded.base=font:Serif,size:10
font.embedded.comment=font:Serif,size:10
font.monospace=font:Consolas,size:10
font.vbs=font:Consolas,size:10

edge.column=80
edge.mode=1
edge.colour=#000000

split.vertical=0

.screenrc

vbell off
autodetach on
startup_message off
defscrollback 10000
silencewait 15
backtick 1 60 60 /home/andrer/bin/get_bat_state.sh
#hardstatus alwayslastline "%{=}%?%{r}%H %L=%{+b}%?%{b}%-Lw%47L>%?%{w}%n*%f %t %?%{b}%+Lw%?%{g}%-31=%c %l %Y-%m-%d"
#hardstatus alwayslastline "%{-b ck} %?%-w%?%{+b}%n%f %t%{-b} %?%+w%? %= %l   %D %d/%m/%Y   %0c "
#hardstatus alwayslastline "%{kr} %H %{ky} load[%l] %{kg} %d.%m.%Y %c %{+b}%{yb} %=%?%-w%?[%n%f %t]%?%+w%? "
#hardstatus alwayslastline  "%{+b ck} %?%-w%?%{-b}%n%f %t%{+b} %?%+w%? %= %l   %D %d/%m/%Y   %0c "
#hardstatus alwayslastline "%{ck}%?%-w%?[%n*%f %t]%?%+Lw%?%=| %D %d.%m.%y - %c "
hardstatus alwayslastline "%{ck}%?%-w%?[%n*%f %t]%?%+Lw%?%= | %1` %% | %l | %D %d.%m.%y - %c "
hardstatus on
msgwait 15
setenv DISPLAY ':0.0'

#logfile /home/andrer/logs/screen_%Y-%m-%d_%0c
#log off

.vimrc

"
" VIM configuration file
"

"
" general
"
set encoding=utf-8
set nocompatible
set ft=unix
set pastetoggle=<F11>
set wildchar=<TAB>
set ttyfast
set ttyscroll=0
filetype plugin on
filetype indent on
set history=1000
set incsearch
set backspace=2
"set ai
set smartcase
set wildmenu
set wildignore=.o,.so,.*~
set modelines=0

let rgb_file="/etc/X11/rgb.txt"

"
" backup
"
set backup
if has("unix")
    set backupdir=/var/tmp/backup
    set directory=/var/tmp/backup
endif

"
" styling
"
set ruler
set showmode
set nowarn
set autoread
set textwidth=72 et
set tabstop=4
set showcmd
set showmatch
set lazyredraw
set hlsearch
set laststatus=2
set statusline=%<[%n]\ %f\ %y\ %r\ %1*%m%*%w%=%(Column:\ %c%)%4(%)%-10(Line:\ %l%)\ %4(%)%p%%\ %P\ \ \ \ \ \ ASCII=%b\ HEX=%B\ \ \ \ \ %=%t
set comments=b:#,:%,fb:-,n:>,n:)
    
highlight Cursor guibg=Blue guifg=None

if has("gui_running")
        colorscheme fruity
        set guifont=Consolas\ 9
        syntax enable
else
  colorscheme desert
endif

" python
set smartindent
set smarttab
autocmd FileType python setlocal expandtab shiftwidth=4 tabstop=4 softtabstop=4
autocmd FileType python map <F5> :w<CR>:!python "%"<CR>

.Xdefaults

!XTerm*faceName: Bitstream Vera Serif Mono
XTerm*faceName: Consolas
XTerm*faceSize: 9
XTerm*background: darkgrey
XTerm*foreground: black
XTerm*saveLines: 20000
XTerm*visualBell: on
XTerm*cursorColor: white
XTerm*loginShell: true
XTerm*scrollBar: false

! Xft
Xft.dpi: 115
Xft.hintstyle: hintfull
Xft.hinting: true
Xft.antialias: true
Xft.rgba: rgb

! xpdf
xpdf*initialZoom: page
xpdf*Background: darkgrey
xpdf*Foreground: black
xpdf*urlCommand: opera %s

! urxvt
urxvt*depth:24
urxvt*saveLines:        32767
urxvt*scrollTtyKeypress:true
urxvt*scrollTtyOutput:  false
urxvt*scrollBar:        false
urxvt*loginShell:       true
urxvt*termName:         rxvt-unicode
urxvt*font:             xft:Dejavu Sans Mono:pixelsize=10
urxvt*font:             xft:Bitstream Vera Sans Mono:pixelsize=14
urxvt*background:       darkgrey
urxvt*foreground:       black

Achtung: Hier bietet es sich auch an, einen Link auf .Xresources anzulegen

dotfiles.txt · Zuletzt geändert: 2011/07/22 23:26 (Externe Bearbeitung)
 
Falls nicht anders bezeichnet, ist der Inhalt dieses Wikis unter der folgenden Lizenz veröffentlicht: CC Attribution-Noncommercial-Share Alike 3.0 Unported
Recent changes RSS feed Donate Powered by PHP Valid XHTML 1.0 Valid CSS Driven by DokuWiki