nix-config/dotfiles/.config/ranger/rc.conf
2017-12-13 23:27:53 -05:00

63 lines
1.9 KiB
INI

##################################################################################
#
# New Start: A modern Arch workflow built with an emphasis on functionality.
# Copyright (C) 2017 Donovan Glover
#
# This program is free software: you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation, either version 3 of the License, or
# (at your option) any later version.
#
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU General Public License for more details.
#
# You should have received a copy of the GNU General Public License
# along with this program. If not, see <https://www.gnu.org/licenses/>.
#
##################################################################################
# Set the color scheme
set colorscheme jungle
# Make the columns gradually increase in size
set column_ratios 1,3,5
# Give everything a little more focus
set draw_borders true
# Make it easier to manage tabs
set dirname_in_tabs true
# Make it easier to 1) know what view we're in and 2) select files
set line_numbers absolute
# Remove the unused space on the right since we won't be using a mouse
set padding_right false
# Disable previews for all the things
set preview_images false
set preview_max_size 1
set use_preview_script false
# Use ~ when in the home directory
set tilde_in_titlebar true
# Show version control information
set vcs_aware true
# Always confirm that you want to delete something
set confirm_on_delete always
# Don't save the console history on exit
set save_console_history false
# Disable the mouse input to avoid opening random stuff
set mouse_enabled false
# Alias r to rename
alias r rename
# vim:ft=dosini