made it work, more or less, with ruby 1.9
[nyuron.git] / nyuron.conf
blobadeb5ced7c90cb5d918b8502ee78171fd09d0053
1 ## this is a sample configuration file for nyuron.
2 ## copy this to ~/.nyurc
4 ## supress some warning messages
5 #stfu = true
6 stfu = false
8 ## set colorschemes
9 colorscheme = "snow"
10 #colorscheme = "simple"
11 #colorscheme = "blue"
13 ## the file containing the database
14 dbfile = "~/.nyudb"
16 ## the log file
17 logfile = "/tmp/errorlog"
19 ## the loglevel: how much information is logged?
20 ## 0: nothing
21 ## 1: fatal errors (default)
22 ## 2: all errors
23 ## 3: all errors and debug info
24 loglevel = 0
26 ## editor: which command is called from API#edit()?
27 ## the first %s is replaced with the file name
28 ## make sure the editor does not append newlines at the end,
29 ## because this might break keys if you edit them with ":edit key"
30 ## in vim, this can be avoided with '+set noendofline' or '+set noeol'
31 editor = "vim '+set ft=ruby' '+set noeol' '+map q ZZ' '%s'"
34 # this line is for the vim-editor
35 # vim: ft=ruby