# HG changeset patch # User Steve Losh # Date 1372805893 25200 # Node ID 78862604f6c8e18112b2186091387774b0b7127f # Parent 175c21750ebb9ac460b373c802057a0bfc0243c3 MORE diff -r 175c21750ebb -r 78862604f6c8 .hgsub --- a/.hgsub Fri Jun 14 17:11:39 2013 -0400 +++ b/.hgsub Tue Jul 02 15:58:13 2013 -0700 @@ -20,6 +20,7 @@ vim/bundle/python-mode = [git]git://github.com/klen/python-mode.git vim/bundle/repeat = [git]git://github.com/tpope/vim-repeat.git vim/bundle/salt = [git]git://github.com/saltstack/salt-vim.git +vim/bundle/scala = [git]git://github.com/derekwyatt/vim-scala.git vim/bundle/slimv = [hg]https://bitbucket.org/sjl/slimv vim/bundle/smartinput = [git]git://github.com/kana/vim-smartinput.git vim/bundle/sparkup = [git]git://github.com/sjl/vim-sparkup.git diff -r 175c21750ebb -r 78862604f6c8 .hgsubstate --- a/.hgsubstate Fri Jun 14 17:11:39 2013 -0400 +++ b/.hgsubstate Tue Jul 02 15:58:13 2013 -0700 @@ -20,6 +20,7 @@ 1b4b8f1a8f1c88d8caae6c1b12c22c52ef418f32 vim/bundle/python-mode 613eb1c81261adfa5dead315089c432ff6dbbc51 vim/bundle/repeat 61a7567a3cdd68cb65ceb3061071ce66d8110e65 vim/bundle/salt +c81f87ca6786142b531e66a948effacc03a02184 vim/bundle/scala 7eb00bb460f91dcb347b23198dff343b4d8e92a9 vim/bundle/slimv 78ab4b3df24fa2753d3dfc1be75ed5a3df1565b8 vim/bundle/smartinput c6197a10ace82e0fe0c08e5cf5c017b7069a978e vim/bundle/sparkup diff -r 175c21750ebb -r 78862604f6c8 bin/bootstrap.sh --- a/bin/bootstrap.sh Fri Jun 14 17:11:39 2013 -0400 +++ b/bin/bootstrap.sh Tue Jul 02 15:58:13 2013 -0700 @@ -39,6 +39,7 @@ ensure_link "lib/dotfiles/dotjs" ".js" ensure_link "lib/dotfiles/dotcss" ".css" ensure_link "lib/dotfiles/hgignore" ".hgignore" +ensure_link "lib/dotfiles/gitignore" ".gitignore" ensure_link "lib/dotfiles/ffignore" ".ffignore" ensure_link "lib/dotfiles/ctags" ".ctags" ensure_link "lib/dotfiles/grc" ".grc" diff -r 175c21750ebb -r 78862604f6c8 ctags --- a/ctags Fri Jun 14 17:11:39 2013 -0400 +++ b/ctags Tue Jul 02 15:58:13 2013 -0700 @@ -17,3 +17,16 @@ --exclude=closure-library --langmap=Lisp:+.clj + +--langdef=scala +--langmap=scala:.scala +--regex-scala=/^[ \t]*((abstract|final|sealed|implicit|lazy)[ \t]*)*(private|protected)?[ \t]*class[ \t]+([a-zA-Z0-9_]+)/\4/c,classes/ +--regex-scala=/^[ \t]*((abstract|final|sealed|implicit|lazy)[ \t]*)*(private|protected)?[ \t]*object[ \t]+([a-zA-Z0-9_]+)/\4/c,objects/ +--regex-scala=/^[ \t]*((abstract|final|sealed|implicit|lazy)[ \t]*)*(private|protected)?[ \t]*case class[ \t]+([a-zA-Z0-9_]+)/\4/c,case classes/ +--regex-scala=/^[ \t]*((abstract|final|sealed|implicit|lazy)[ \t]*)*(private|protected)?[ \t]*case object[ \t]+([a-zA-Z0-9_]+)/\4/c,case objects/ +--regex-scala=/^[ \t]*((abstract|final|sealed|implicit|lazy)[ \t]*)*(private|protected)?[ \t]*trait[ \t]+([a-zA-Z0-9_]+)/\4/t,traits/ +--regex-scala=/^[ \t]*type[ \t]+([a-zA-Z0-9_]+)/\1/T,types/ +--regex-scala=/^[ \t]*((abstract|final|sealed|implicit|lazy)[ \t]*)*def[ \t]+([a-zA-Z0-9_]+)/\3/m,methods/ +--regex-scala=/^[ \t]*((abstract|final|sealed|implicit|lazy)[ \t]*)*val[ \t]+([a-zA-Z0-9_]+)/\3/l,constants/ +--regex-scala=/^[ \t]*((abstract|final|sealed|implicit|lazy)[ \t]*)*var[ \t]+([a-zA-Z0-9_]+)/\3/l,variables/ +--regex-scala=/^[ \t]*package[ \t]+([a-zA-Z0-9_.]+)/\1/p,packages/ diff -r 175c21750ebb -r 78862604f6c8 ffignore --- a/ffignore Fri Jun 14 17:11:39 2013 -0400 +++ b/ffignore Tue Jul 02 15:58:13 2013 -0700 @@ -1,2 +1,5 @@ syntax:literal .DS_Store + +syntax:regex +^./target$ diff -r 175c21750ebb -r 78862604f6c8 fish/config.fish --- a/fish/config.fish Fri Jun 14 17:11:39 2013 -0400 +++ b/fish/config.fish Tue Jul 02 15:58:13 2013 -0700 @@ -24,6 +24,10 @@ function eg; vim ~/.gitconfig; end function es; vim ~/.slate; end +function pj + python -m json.tool | pygmentize -l json +end + function vup set -x VAGRANT_LOG debug vagrant up $argv @@ -171,6 +175,7 @@ prepend_to_path "/usr/local/bin" prepend_to_path "/usr/local/share/python" prepend_to_path "/usr/local/sbin" +prepend_to_path "/usr/local/share/npm/bin" prepend_to_path "$HOME/bin" prepend_to_path "$HOME/lib/dotfiles/bin" prepend_to_path "/opt/local/bin" @@ -193,6 +198,8 @@ set -g -x VIM_BINARY "/usr/local/bin/vim" set -g -x MVIM_BINARY "/usr/local/bin/mvim" +set -g -x DRIP_SHUTDOWN 30 + # }}} # Python variables {{{ diff -r 175c21750ebb -r 78862604f6c8 gitconfig --- a/gitconfig Fri Jun 14 17:11:39 2013 -0400 +++ b/gitconfig Tue Jul 02 15:58:13 2013 -0700 @@ -102,3 +102,6 @@ [web] browser = open + +[include] + path = ~/.gitconfig_local diff -r 175c21750ebb -r 78862604f6c8 gitignore --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/gitignore Tue Jul 02 15:58:13 2013 -0700 @@ -0,0 +1,5 @@ +dependency-reduced-pom.xml +tags +tags1 +tags2 +tags.bak diff -r 175c21750ebb -r 78862604f6c8 hgignore --- a/hgignore Fri Jun 14 17:11:39 2013 -0400 +++ b/hgignore Tue Jul 02 15:58:13 2013 -0700 @@ -3,3 +3,4 @@ .DS_Store *.pyc tags +tags.bak diff -r 175c21750ebb -r 78862604f6c8 hgrc --- a/hgrc Fri Jun 14 17:11:39 2013 -0400 +++ b/hgrc Tue Jul 02 15:58:13 2013 -0700 @@ -236,8 +236,9 @@ ignore = ![ -n "$@" ] && echo '$@' >> `$HG root`/.hgignore && \ $HG commit `$HG root`/.hgignore -Am 'Add "$@" to .hgignore.' -# Show in MacVim -vshow = !$HG show $@ | mvim -c ':AnsiEsc' -c 'setlocal buftype=nofile' - +# Show in Vim +vshow = !$HG show $@ | vim -c ':AnsiEsc' -c 'setlocal buftype=nofile' - +vdiff = !$HG diff -p --color=always $@ | vim -c ':AnsiEsc' -c 'setlocal buftype=nofile' - # Ack for non-ignored files ack = !$HG locate "set:not ignored()" | xargs ack $@ diff -r 175c21750ebb -r 78862604f6c8 mutt/muttrc --- a/mutt/muttrc Fri Jun 14 17:11:39 2013 -0400 +++ b/mutt/muttrc Tue Jul 02 15:58:13 2013 -0700 @@ -46,11 +46,12 @@ set sidebar_delim = ' │' set sidebar_visible = yes -set sidebar_width = 24 +set sidebar_width = 26 color sidebar_new color221 color233 bind index,pager sidebar-next bind index,pager sidebar-prev bind index,pager sidebar-open +set sidebar_format = "%B %> %S" # }}} # Status Bar {{{ @@ -118,30 +119,56 @@ # }}} # steve@stevelosh.com {{{ +# # Default inbox. +# set spoolfile = "+steve-stevelosh.com/INBOX" + +# # Alternate email addresses. +# alternates sjl@pculture.org still\.?life@gmail.com steve@ladyluckblues.com steve@pculture.org + +# # Mailboxes to show in the sidebar. +# mailboxes +steve-stevelosh.com/INBOX \ +# +steve-stevelosh.com/vim \ +# +steve-stevelosh.com/clojure \ +# +steve-stevelosh.com/python \ +# +steve-stevelosh.com/mercurial \ +# +steve-stevelosh.com/archive \ +# +steve-stevelosh.com/sent \ +# +steve-stevelosh.com/drafts \ +# +temporary/search \ + +# # Other special folders. +# set mbox = "+steve-stevelosh.com/archive" +# set postponed = "+steve-stevelosh.com/drafts" + +# # Sending email. +# set from = "steve@stevelosh.com" +# set sendmail = "/usr/local/bin/msmtp -a stevelosh" +# set sendmail_wait = 0 # no please don't silently fail, email is important +# unset record + +# }}} +# sjl@simple.com {{{ + # Default inbox. -set spoolfile = "+steve-stevelosh.com/INBOX" +set spoolfile = "+simple/INBOX" # Alternate email addresses. -alternates sjl@pculture.org still\.?life@gmail.com steve@ladyluckblues.com steve@pculture.org +alternates slj@simple.com # Mailboxes to show in the sidebar. -mailboxes +steve-stevelosh.com/INBOX \ - +steve-stevelosh.com/vim \ - +steve-stevelosh.com/clojure \ - +steve-stevelosh.com/python \ - +steve-stevelosh.com/mercurial \ - +steve-stevelosh.com/archive \ - +steve-stevelosh.com/sent \ - +steve-stevelosh.com/drafts \ - +temporary/search \ +mailboxes +simple/INBOX \ + +simple/archive \ + +simple/sent \ + +simple/drafts \ + +search \ # Other special folders. -set mbox = "+steve-stevelosh.com/archive" -set postponed = "+steve-stevelosh.com/drafts" +set mbox = "+simple/archive" +set postponed = "+simple/drafts" # Sending email. -set from = "steve@stevelosh.com" -set sendmail = "/usr/local/bin/msmtp -a stevelosh" +set from = "sjl@simple.com" +set sendmail = "/usr/local/bin/msmtp -a simple" set sendmail_wait = 0 # no please don't silently fail, email is important unset record @@ -179,11 +206,11 @@ macro index M "?" "move a message to a mailbox" # Quickly change mailboxes -macro index \' "+steve-stevelosh.com/INBOX" "go to stevelosh/INBOX" -macro index \" "+steve-stevelosh.com/archive" "go to stevelosh/archive" +macro index \' "+simple/INBOX" "go to INBOX" +macro index \" "+simple/archive" "go to archive" # Search with notmuch -macro index S "unset wait_keymutt-notmuch-py -G ~/.mail/temporary/search+temporary/search" "search mail (using notmuch)" +macro index S "unset wait_keymutt-notmuch-py -G ~/.mail/search+search" "search mail (using notmuch)" # Unlimit (show [a]ll) macro index a "all\n" "show all messages (undo limit)" @@ -204,8 +231,8 @@ macro pager s "cat > ~/Desktop/" "save message as" # Quickly change mailboxes -macro pager \' "+steve-stevelosh.com/INBOX" "go to stevelosh/INBOX" -macro pager \" "+steve-stevelosh.com/archive" "go to stevelosh/archive" +macro pager \' "+sjl-simple.com/INBOX" "go to INBOX" +macro pager \" "+sjl-simple.com/archive" "go to archive" # }}} # Compose {{{ diff -r 175c21750ebb -r 78862604f6c8 offlineimaprc --- a/offlineimaprc Fri Jun 14 17:11:39 2013 -0400 +++ b/offlineimaprc Tue Jul 02 15:58:13 2013 -0700 @@ -1,18 +1,54 @@ [general] ui = TTY.TTYUI -accounts = SteveLosh +accounts = Simple pythonfile=~/.mutt/offlineimap.py fsync = False -[Account SteveLosh] -localrepository = SteveLosh-Local -remoterepository = SteveLosh-Remote +# [Account SteveLosh] +# localrepository = SteveLosh-Local +# remoterepository = SteveLosh-Remote +# status_backend = sqlite +# postsynchook = notmuch new +# +# [Repository SteveLosh-Local] +# type = Maildir +# localfolders = ~/.mail/steve-stevelosh.com +# nametrans = lambda folder: {'drafts': '[Gmail]/Drafts', +# 'sent': '[Gmail]/Sent Mail', +# 'flagged': '[Gmail]/Starred', +# 'trash': '[Gmail]/Trash', +# 'archive': '[Gmail]/All Mail', +# }.get(folder, folder) +# +# [Repository SteveLosh-Remote] +# maxconnections = 1 +# type = Gmail +# remoteuser = steve@stevelosh.com +# remotepasseval = get_keychain_pass(account="steve@stevelosh.com", server="imap.gmail.com") +# realdelete = no +# nametrans = lambda folder: {'[Gmail]/Drafts': 'drafts', +# '[Gmail]/Sent Mail': 'sent', +# '[Gmail]/Starred': 'flagged', +# '[Gmail]/Trash': 'trash', +# '[Gmail]/All Mail': 'archive', +# }.get(folder, folder) +# folderfilter = lambda folder: folder not in ['[Gmail]/Trash', +# 'Nagios', +# 'Django', +# 'Flask', +# '[Gmail]/Important', +# '[Gmail]/Spam', +# ] + +[Account Simple] +localrepository = Simple-Local +remoterepository = Simple-Remote status_backend = sqlite postsynchook = notmuch new -[Repository SteveLosh-Local] +[Repository Simple-Local] type = Maildir -localfolders = ~/.mail/steve-stevelosh.com +localfolders = ~/.mail/simple nametrans = lambda folder: {'drafts': '[Gmail]/Drafts', 'sent': '[Gmail]/Sent Mail', 'flagged': '[Gmail]/Starred', @@ -20,11 +56,11 @@ 'archive': '[Gmail]/All Mail', }.get(folder, folder) -[Repository SteveLosh-Remote] +[Repository Simple-Remote] maxconnections = 1 type = Gmail -remoteuser = steve@stevelosh.com -remotepasseval = get_keychain_pass(account="steve@stevelosh.com", server="imap.gmail.com") +remoteuser = sjl@simple.com +remotepasseval = get_keychain_pass(account="sjl@simple.com", server="imap.gmail.com") realdelete = no nametrans = lambda folder: {'[Gmail]/Drafts': 'drafts', '[Gmail]/Sent Mail': 'sent', @@ -33,9 +69,6 @@ '[Gmail]/All Mail': 'archive', }.get(folder, folder) folderfilter = lambda folder: folder not in ['[Gmail]/Trash', - 'Nagios', - 'Django', - 'Flask', '[Gmail]/Important', '[Gmail]/Spam', ] diff -r 175c21750ebb -r 78862604f6c8 vim/vimrc --- a/vim/vimrc Fri Jun 14 17:11:39 2013 -0400 +++ b/vim/vimrc Tue Jul 02 15:58:13 2013 -0700 @@ -283,7 +283,7 @@ let @z = old_z endfunction noremap p :silent! set paste"*p:set nopaste -noremap p :r!pbpaste +" noremap p mz:r!pbpaste`z vnoremap y :call g:FuckingCopyTheTextPlease() " I constantly hit "u" in visual mode when I mean to "y". Use "gu" for those rare occasions. @@ -349,9 +349,14 @@ " I never use l as a macro register anyway. nnoremap ql gqq -" Easier linewise reselection +" Easier linewise reselection of what you just pasted. nnoremap V V`] +" Indent/dedent/autoindent what you just pasted. +nnoremap > V`]< +nnoremap > V`]> +nnoremap =- V`]= + " Keep the cursor in place while joining lines nnoremap J mzJ`z @@ -514,9 +519,6 @@ nnoremap Vab vabV nnoremap VaB vaBV -" Toggle "keep current line in the center of the screen" mode -nnoremap C :let &scrolloff=999-&scrolloff - " Directional Keys {{{ " It's 2013. @@ -1021,6 +1023,14 @@ augroup END " }}} +" Scala {{{ + +augroup ft_scala + au! + au Filetype scala setlocal foldmethod=indent +augroup END + +" }}} " stevelosh.com Blog Entries {{{ augroup ft_steveloshcom @@ -1325,10 +1335,17 @@ let g:syntastic_enable_signs = 1 let g:syntastic_check_on_open = 1 -let g:syntastic_disabled_filetypes = ['html', 'rst'] +let g:syntastic_java_checker = 'javac' +let g:syntastic_mode_map = { + \ "mode": "active", + \ "active_filetypes": [], + \ "passive_filetypes": ['java', 'html', 'rst', 'scala'] + \ } let g:syntastic_stl_format = '[%E{%e Errors}%B{, }%W{%w Warnings}]' let g:syntastic_jsl_conf = '$HOME/.vim/jsl.conf' +nnoremap C :SyntasticCheck + " }}} " Splice {{{ diff -r 175c21750ebb -r 78862604f6c8 weechat/alias.conf --- a/weechat/alias.conf Fri Jun 14 17:11:39 2013 -0400 +++ b/weechat/alias.conf Tue Jul 02 15:58:13 2013 -0700 @@ -1,5 +1,5 @@ # -# alias.conf -- WeeChat v0.3.8 +# alias.conf -- weechat v0.4.1 # [cmd] diff -r 175c21750ebb -r 78862604f6c8 weechat/aspell.conf --- a/weechat/aspell.conf Fri Jun 14 17:11:39 2013 -0400 +++ b/weechat/aspell.conf Tue Jul 02 15:58:13 2013 -0700 @@ -1,5 +1,5 @@ # -# aspell.conf -- weechat v0.3.7 +# aspell.conf -- weechat v0.4.1 # [look] @@ -9,7 +9,9 @@ commands = "ame,amsg,away,command,cycle,kick,kickban,me,msg,notice,part,query,quit,topic" default_dict = "en" during_search = off +enabled = off real_time = off +suggestions = -1 word_min_length = 2 [dict] diff -r 175c21750ebb -r 78862604f6c8 weechat/buffers.conf --- a/weechat/buffers.conf Fri Jun 14 17:11:39 2013 -0400 +++ b/weechat/buffers.conf Tue Jul 02 15:58:13 2013 -0700 @@ -1,5 +1,5 @@ # -# buffers.conf -- WeeChat v0.3.8 +# buffers.conf -- weechat v0.4.1 # [color] diff -r 175c21750ebb -r 78862604f6c8 weechat/charset.conf --- a/weechat/charset.conf Fri Jun 14 17:11:39 2013 -0400 +++ b/weechat/charset.conf Tue Jul 02 15:58:13 2013 -0700 @@ -1,5 +1,5 @@ # -# charset.conf -- WeeChat v0.3.8 +# charset.conf -- weechat v0.4.1 # [default] diff -r 175c21750ebb -r 78862604f6c8 weechat/logger.conf --- a/weechat/logger.conf Fri Jun 14 17:11:39 2013 -0400 +++ b/weechat/logger.conf Tue Jul 02 15:58:13 2013 -0700 @@ -1,5 +1,5 @@ # -# logger.conf -- WeeChat v0.3.8 +# logger.conf -- weechat v0.4.1 # [look] @@ -15,6 +15,8 @@ info_lines = off mask = "$plugin.$name.weechatlog" name_lower_case = on +nick_prefix = "" +nick_suffix = "" path = "%h/logs/" replacement_char = "_" time_format = "%Y-%m-%d %H:%M:%S" diff -r 175c21750ebb -r 78862604f6c8 weechat/plugins.conf --- a/weechat/plugins.conf Fri Jun 14 17:11:39 2013 -0400 +++ b/weechat/plugins.conf Tue Jul 02 15:58:13 2013 -0700 @@ -1,9 +1,10 @@ # -# plugins.conf -- WeeChat v0.3.8 +# plugins.conf -- weechat v0.4.1 # [var] fifo.fifo = "on" +lua.check_license = "off" perl.buffers.color_current = "black,green" perl.buffers.color_default = "default" perl.buffers.color_hotlist_highlight = "lightmagenta" diff -r 175c21750ebb -r 78862604f6c8 weechat/relay.conf --- a/weechat/relay.conf Fri Jun 14 17:11:39 2013 -0400 +++ b/weechat/relay.conf Tue Jul 02 15:58:13 2013 -0700 @@ -1,5 +1,5 @@ # -# relay.conf -- WeeChat v0.3.8 +# relay.conf -- weechat v0.4.1 # [look] @@ -7,6 +7,7 @@ raw_messages = 256 [color] +client = cyan status_active = lightblue status_auth_failed = lightred status_connecting = yellow @@ -20,7 +21,17 @@ allowed_ips = "" bind_address = "" compression_level = 6 +ipv6 = on max_clients = 5 password = "" +ssl_cert_key = "%h/ssl/relay.pem" +websocket_allowed_origins = "" + +[irc] +backlog_max_minutes = 1440 +backlog_max_number = 256 +backlog_since_last_disconnect = on +backlog_tags = "irc_privmsg" +backlog_time_format = "[%H:%M] " [port] diff -r 175c21750ebb -r 78862604f6c8 weechat/rmodifier.conf --- a/weechat/rmodifier.conf Fri Jun 14 17:11:39 2013 -0400 +++ b/weechat/rmodifier.conf Tue Jul 02 15:58:13 2013 -0700 @@ -1,5 +1,5 @@ # -# rmodifier.conf -- WeeChat v0.3.8 +# rmodifier.conf -- weechat v0.4.1 # [look] diff -r 175c21750ebb -r 78862604f6c8 weechat/script.conf --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/weechat/script.conf Tue Jul 02 15:58:13 2013 -0700 @@ -0,0 +1,48 @@ +# +# script.conf -- weechat v0.4.1 +# + +[look] +columns = "%s %n %V %v %u | %d | %t" +diff_color = on +diff_command = "auto" +display_source = on +quiet_actions = on +sort = "p,n" +translate_description = on +use_keys = on + +[color] +status_autoloaded = cyan +status_held = white +status_installed = lightcyan +status_obsolete = lightmagenta +status_popular = yellow +status_running = lightgreen +status_unknown = lightred +text = default +text_bg = default +text_bg_selected = red +text_date = default +text_date_selected = white +text_delimiters = darkgray +text_description = default +text_description_selected = white +text_extension = default +text_extension_selected = white +text_name = cyan +text_name_selected = lightcyan +text_selected = white +text_tags = brown +text_tags_selected = yellow +text_version = magenta +text_version_loaded = default +text_version_loaded_selected = white +text_version_selected = lightmagenta + +[scripts] +autoload = on +cache_expire = 60 +dir = "%h/script" +hold = "" +url = "http://www.weechat.org/files/plugins.xml.gz" diff -r 175c21750ebb -r 78862604f6c8 weechat/urlgrab.conf --- a/weechat/urlgrab.conf Fri Jun 14 17:11:39 2013 -0400 +++ b/weechat/urlgrab.conf Tue Jul 02 15:58:13 2013 -0700 @@ -1,5 +1,5 @@ # -# urlgrab.conf -- WeeChat v0.3.8 +# urlgrab.conf -- weechat v0.4.1 # [color] diff -r 175c21750ebb -r 78862604f6c8 weechat/weechat.conf --- a/weechat/weechat.conf Fri Jun 14 17:11:39 2013 -0400 +++ b/weechat/weechat.conf Tue Jul 02 15:58:13 2013 -0700 @@ -1,5 +1,5 @@ # -# weechat.conf -- WeeChat v0.3.8 +# weechat.conf -- weechat v0.4.1 # [debug] @@ -9,6 +9,7 @@ command_before_plugins = "" display_logo = on display_version = on +sys_rlimit = "" [look] align_end_of_lines = message @@ -25,6 +26,7 @@ color_inactive_prefix_buffer = on color_inactive_time = off color_inactive_window = off +color_nick_offline = off color_pairs_auto_reset = 5 color_real_white = off command_chars = "" @@ -54,10 +56,11 @@ item_time_format = "%H:%M" jump_current_to_previous_buffer = on jump_previous_buffer_when_closing = on +jump_smart_back_to_buffer = on mouse = off mouse_timer_delay = 100 -nickmode = on -nickmode_empty = off +nick_prefix = "" +nick_suffix = "" paste_bracketed = off paste_bracketed_timer_delay = 10 paste_max_lines = 3 @@ -66,9 +69,11 @@ prefix_align_max = 15 prefix_align_min = 0 prefix_align_more = "+" +prefix_align_more_after = on prefix_buffer_align = right prefix_buffer_align_max = 0 prefix_buffer_align_more = "+" +prefix_buffer_align_more_after = on prefix_error = "=!=" prefix_join = "✔" prefix_network = "--" @@ -88,6 +93,8 @@ separator_vertical = "" set_title = on time_format = "%a, %d %b %Y %T" +window_separator_horizontal = on +window_separator_vertical = on [palette] @@ -105,8 +112,13 @@ chat_inactive_window = darkgray chat_nick = lightcyan chat_nick_colors = "226,208,136,206,081,082,099,068,048,112" +chat_nick_offline = darkgray +chat_nick_offline_highlight = default +chat_nick_offline_highlight_bg = darkgray chat_nick_other = cyan +chat_nick_prefix = green chat_nick_self = white +chat_nick_suffix = green chat_prefix_action = white chat_prefix_buffer = brown chat_prefix_buffer_inactive_buffer = darkgray diff -r 175c21750ebb -r 78862604f6c8 weechat/xfer.conf --- a/weechat/xfer.conf Fri Jun 14 17:11:39 2013 -0400 +++ b/weechat/xfer.conf Tue Jul 02 15:58:13 2013 -0700 @@ -1,5 +1,5 @@ # -# xfer.conf -- WeeChat v0.3.8 +# xfer.conf -- weechat v0.4.1 # [look] @@ -28,6 +28,7 @@ [file] auto_accept_chats = off auto_accept_files = off +auto_accept_nicks = "" auto_rename = on auto_resume = on convert_spaces = on