diff options
Diffstat (limited to 'ranger.rb')
-rwxr-xr-x | ranger.rb | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/ranger.rb b/ranger.rb index fc74e012..441a3a82 100755 --- a/ranger.rb +++ b/ranger.rb @@ -37,8 +37,6 @@ opt = { :sort => :name, :list_dir_first => true, :sort_reverse => false, - :cd => ARGV.include?('--cd'), - :colorscheme => true, :bookmark_file => '~/.ranger_bookmarks', :ascii_only => true, :wide_bar => true, @@ -47,7 +45,8 @@ opt = { :file_preview => true, :preview => true, :mouse => true, - :colorscheme => 'default' + :colorscheme => 'default', + :cd => ARGV.include?('--cd'), } class OptionClass < Struct.new(*opt.keys) |