Navigation Menu

Skip to content

Commit

Permalink
my first changes
Browse files Browse the repository at this point in the history
  • Loading branch information
noahm committed Jan 18, 2011
1 parent 2305aef commit 0089865
Show file tree
Hide file tree
Showing 4 changed files with 13 additions and 9 deletions.
1 change: 1 addition & 0 deletions gitignore
Expand Up @@ -2,3 +2,4 @@
*~
.svn
.*.sw[a-z]
*.tmproj
8 changes: 7 additions & 1 deletion irbrc 100644 → 100755
Expand Up @@ -87,7 +87,7 @@ $console_extensions = []
# output and history
extend_console 'wirble' do
Wirble.init
Wirble.colorize
# Wirble.colorize
end

# Hirb makes tables easy.
Expand Down Expand Up @@ -138,3 +138,9 @@ end

# Show results of all extension-loading
puts "#{ANSI[:GRAY]}~> Console extensions:#{ANSI[:RESET]} #{$console_extensions.join(' ')}#{ANSI[:RESET]}"

# Make URL helpers available in the Rails console
if defined? RAILS_ENV
include ActionController::UrlWriter
default_url_options[:host] = 'the-operative.local'
end
12 changes: 4 additions & 8 deletions tmux.conf 100644 → 100755
Expand Up @@ -11,6 +11,8 @@ bind-key C-w set-option -g prefix ` \; unbind-key C-a \; bind-key ` send-prefix
bind-key k confirm kill-window
bind-key K confirm kill-server
bind-key e last-window
# Refresh the screen, sometimes just needed
bind-key R refresh-client
Expand All @@ -34,7 +36,7 @@ set-option -g display-time 2500
# notify on window activity
set-window-option -g monitor-activity on
set-option -g visual-content on
set-option -g visual-bell on
set-option -g visual-bell off # actually no, I don't like bells
set-option -g visual-activity on
# Style the tabs
Expand All @@ -46,7 +48,7 @@ set-option -g status-attr bright
set-option -g status-bg default
set-option -g status-fg black
set-option -g status-interval 1
set-option -g status-right '%b %d #[fg=cyan]%I:%M #[default]%p'
set-option -g status-right '%b %d #[fg=cyan]%H:%M'
set-window-option -g window-status-format '#I#F#W'
set-window-option -g window-status-current-format ' #I#F #W '
set-window-option -g window-status-current-attr dim
Expand Down Expand Up @@ -95,9 +97,3 @@ set-option -g status-utf8 on
set-window-option -g utf8 on
# Reload config, just in case
bind-key r source-file ~/.tmux.conf
new-session -d -s main 'exec sudo htop'
# Don't tell me when this always changing window changes!
set-window-option -t main:1 monitor-activity off
new-window -t main:2
# join-pane -s main:2 -t main:1
1 change: 1 addition & 0 deletions vimrc
Expand Up @@ -397,6 +397,7 @@ if has("gui_running")
set enc=utf-8
endif
else
set t_Co=256
" Workaround for making things like arrow keys work under screen
if $TERM == 'screen*'
set term=xterm
Expand Down

0 comments on commit 0089865

Please sign in to comment.