-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #80 from lucasvazq/develop
Update master w develop
- Loading branch information
Showing
8 changed files
with
128 additions
and
7 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,84 @@ | ||
############################################################################### | ||
# Basic config | ||
############################################################################### | ||
|
||
|
||
set viewmode miller | ||
set column_ratios 1,3,4 | ||
set hidden_filter ^\.|\.(?:pyc|pyo|bak|swp)$|^lost\+found$|^__(py)?cache__$ | ||
set show_hidden false | ||
set confirm_on_delete never | ||
set preview_script ~/.config/ranger/scope.sh | ||
set use_preview_script true | ||
set automatically_count_files true | ||
set open_all_images true | ||
set vcs_aware false | ||
set vcs_backend_git enabled | ||
set vcs_backend_hg disabled | ||
set vcs_backend_bzr disabled | ||
set preview_images true | ||
set preview_images_method ueberzug | ||
set unicode_ellipsis false | ||
set show_hidden_bookmarks true | ||
set colorscheme default | ||
set preview_files true | ||
set preview_directories true | ||
set collapse_preview true | ||
set save_console_history true | ||
set status_bar_on_top false | ||
set draw_progress_bar_in_status_bar true | ||
set draw_borders true | ||
set dirname_in_tabs false | ||
set mouse_enabled true | ||
set display_size_in_main_column true | ||
set display_size_in_status_bar true | ||
set display_tags_in_all_columns true | ||
set update_title false | ||
set update_tmux_title false | ||
set shorten_title 3 | ||
set tilde_in_titlebar false | ||
set max_history_size 20 | ||
set max_console_history_size 50 | ||
set scroll_offset 8 | ||
set flushinput true | ||
set padding_right true | ||
set autosave_bookmarks true | ||
set autoupdate_cumulative_size false | ||
set show_cursor false | ||
set sort natural | ||
set sort_reverse false | ||
set sort_case_insensitive true | ||
set sort_directories_first true | ||
set sort_unicode false | ||
set xterm_alt_key false | ||
set cd_bookmarks true | ||
set preview_max_size 0 | ||
set show_selection_in_titlebar true | ||
set idle_delay 2000 | ||
set metadata_deep_search false | ||
set clear_filters_on_dir_change false | ||
set line_numbers false | ||
|
||
|
||
############################################################################### | ||
# Keybinds | ||
############################################################################### | ||
|
||
|
||
# Cursor | ||
map l move up=1 | ||
map k move down=1 | ||
map j move left=1 | ||
map ; move right=1 | ||
map h set show_hidden! | ||
map s move to=0 | ||
map d move to=-1 | ||
map [ move up=1 pages=True | ||
map ' move down=1 pages=True | ||
|
||
# Insert | ||
map o console delete | ||
map u console touch%space | ||
|
||
# Quit | ||
map p quit |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,29 @@ | ||
# Index | ||
|
||
1) [Cursor](#cursor) | ||
2) [Insert](#insert) | ||
3) [Quit](#quit) | ||
|
||
## Cursor | ||
```yaml | ||
move up=1 l | ||
move down=1 k | ||
move left=1 j | ||
move right=1 ; | ||
set show_hidden! h | ||
move to=0 s | ||
move to=-1 d | ||
move up=1 pages=True [ | ||
move down=1 pages=True ' | ||
``` | ||
|
||
## Insert | ||
```yaml | ||
console delete o | ||
console touch%space u | ||
``` | ||
|
||
## Quit | ||
```yaml | ||
quit q | ||
``` |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters