+++ /dev/null
-
-# this is an example .emacs file with my preferred indentation for code.
-
-(setq c-default-style "linux"
- c-basic-offset 2)
-
-
--- /dev/null
+
+# this is an example .emacs file with my preferred indentation for code.
+
+(setq c-default-style "linux"
+ c-basic-offset 2)
+
+
--- /dev/null
+
+this directory provides a bunch of example configuration files for different
+services and programs.
+
+some of the files here are named "dot.something", and that generally should
+be translated to a real name of ".something". otherwise, these configuration
+example files would be hidden (since the start with a dot), which doesn't
+make a very good example.
+
--- /dev/null
+
+nethack on
+
+logfile $HOME/.tmp/zz_screenlog_%t_%Y_%m_%d_%c.%n
+
+defscrollback 1024
+
+# Display the status line
+hardstatus on
+hardstatus alwayslastline
+hardstatus string "%{.kW}%-w%{.bW}%t [%n]%{-}%+w %=%{..G} %H %{..Y} %Y/%m/%d %c"
+
+++ /dev/null
-
-nethack on
-
-logfile $HOME/.tmp/zz_screenlog_%t_%Y_%m_%d_%c.%n
-
-defscrollback 1024
-
-# Display the status line
-hardstatus on
-hardstatus alwayslastline
-hardstatus string "%{.kW}%-w%{.bW}%t [%n]%{-}%+w %=%{..G} %H %{..Y} %Y/%m/%d %c"
-
--- /dev/null
+
+" cranks up the register saved buffer size to 1000 lines, since otherwise the cut buffer will only
+" preserve the default 50 lines for a paste to another file. this makes all registers go up to
+" this size though, so if you save to a lot of different ones, you will use more space in your
+" viminfo file.
+set viminfo='100,<1000,s10,h
+
+" tells vim not to make a backup of the file before editing it; this is living dangerously.
+set nobk
+
+" nocompatible|nocp turns off compatibility mode, allowing filename completion.
+set nocompatible
+
+" elflord just happens to be the color scheme i prefer. there are a bunch.
+colorscheme elflord
+
+" map the normal copy, cut and paste keys (ctrl-c, ctrl-x & ctrl-v) for vim.
+nmap <C-V> "+gP
+imap <C-V> <ESC><C-V>i
+vmap <C-C> "+y
+vmap <C-X> "+c
+
+" map ctrl-a to select all of the file. ctrl-i increments, whatever that is.
+noremap <C-I> <C-A>
+noremap <C-A> gggH<C-O>G
+inoremap <C-A> <C-O>gg<C-O>gH<C-O>G
+cnoremap <C-A> <C-C>gggH<C-O>G
+onoremap <C-A> <C-C>gggH<C-O>G
+snoremap <C-A> <C-C>gggH<C-O>G
+xnoremap <C-A> <C-C>ggVG
+++ /dev/null
-
-" cranks up the register saved buffer size to 1000 lines, since otherwise the cut buffer will only
-" preserve the default 50 lines for a paste to another file. this makes all registers go up to
-" this size though, so if you save to a lot of different ones, you will use more space in your
-" viminfo file.
-set viminfo='100,<1000,s10,h
-
-" tells vim not to make a backup of the file before editing it; this is living dangerously.
-set nobk
-
-" nocompatible|nocp turns off compatibility mode, allowing filename completion.
-set nocompatible
-
-" elflord just happens to be the color scheme i prefer. there are a bunch.
-colorscheme elflord
-
-" map the normal copy, cut and paste keys (ctrl-c, ctrl-x & ctrl-v) for vim.
-nmap <C-V> "+gP
-imap <C-V> <ESC><C-V>i
-vmap <C-C> "+y
-vmap <C-X> "+c
-
-" map ctrl-a to select all of the file. ctrl-i increments, whatever that is.
-noremap <C-I> <C-A>
-noremap <C-A> gggH<C-O>G
-inoremap <C-A> <C-O>gg<C-O>gH<C-O>G
-cnoremap <C-A> <C-C>gggH<C-O>G
-onoremap <C-A> <C-C>gggH<C-O>G
-snoremap <C-A> <C-C>gggH<C-O>G
-xnoremap <C-A> <C-C>ggVG
--- /dev/null
+
+[grab]
+ device = /dev/video0
+ text = "webcam %Y-%m-%d %H:%M:%S"
+# infofile = filename
+ fg_red = 255
+ fg_green = 255
+ fg_blue = 255
+ width = 320
+ height = 240
+ delay = 1
+ wait = 0
+# input = composite1
+ norm = pal
+ rotate = 0
+ top = 0
+ left = 0
+ bottom = 239
+ right = 319
+ quality = 85
+ trigger = 100
+ once = 0
+
+[velma]
+ host = velma
+ user = anonymous
+ pass = fred@
+ dir = incoming
+ file = webcam.jpeg
+ tmp = uploading.jpeg
+ passive = 1
+ debug = 0
+ auto = 0
+ local = 0
+ ssh = 0
+
+
+++ /dev/null
-
-[grab]
- device = /dev/video0
- text = "webcam %Y-%m-%d %H:%M:%S"
-# infofile = filename
- fg_red = 255
- fg_green = 255
- fg_blue = 255
- width = 320
- height = 240
- delay = 1
- wait = 0
-# input = composite1
- norm = pal
- rotate = 0
- top = 0
- left = 0
- bottom = 239
- right = 319
- quality = 85
- trigger = 100
- once = 0
-
-[velma]
- host = velma
- user = anonymous
- pass = fred@
- dir = incoming
- file = webcam.jpeg
- tmp = uploading.jpeg
- passive = 1
- debug = 0
- auto = 0
- local = 0
- ssh = 0
-
-