-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
moved resources around and changed default config files
- Loading branch information
Showing
4 changed files
with
99 additions
and
53 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,54 @@ | ||
[settings] | ||
# Use this to set the default editor for opening | ||
# shortcuts to files. | ||
default_editor="vi" | ||
|
||
# Use this to set the maximum number of saved entries | ||
# in the bunnyhop command history table. | ||
# | ||
# If set to 0, will continue to history indefinitely | ||
# without removing. | ||
max_history=300 | ||
|
||
# Use this choose how to display the results of the `ls` | ||
# or `list` command. | ||
# | ||
# If set to 0, will print out the entire list of shortcuts | ||
# at once. | ||
# | ||
# If set to some integer N > 0, | ||
# it will display N shortcuts at once and wait for a keypress | ||
# before displaying the next N shortcuts. | ||
ls_display_block=0 | ||
|
||
[editors] | ||
# Use this section to define alternate editors for individual | ||
# file extensions. Set the extension on the right and the command | ||
# to open the editor for that extension on the right. | ||
# | ||
# If a file is opened without a specified extension, the default | ||
# editor will be used to open it. | ||
# | ||
# For example, use Jupyter Notebooks with IPython files, you can set: | ||
# | ||
# ipynb="jupyter-notebook" | ||
# | ||
# and anytime bunnyhop is used to open a shortcut to a .ipynb file, | ||
# it will open it in Jupyter. | ||
# | ||
# As another example, if you want to open normal Python files in | ||
# VSCode, you can set: | ||
# | ||
# py="code" | ||
# | ||
# If you want to open Scala files in Intellij, you can set: | ||
# | ||
# sc="idea" | ||
# scala="idea" | ||
# sbt="idea" | ||
# | ||
# Note that it had to be defined for all of the relevant | ||
# Scala file extensions. | ||
# | ||
# I pretty much just use Neovim (the GOAT) for everything but | ||
# notebooks. For notebooks I use: `ipynb="euporia-notebook"` |
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,20 @@ | ||
" | ||
{} {} {} | ||
1) First argument is required. | ||
2) Second argument is optional. | ||
|
||
Valid first argument commands are: | ||
1) {}: command to add a shortcut to the current directory. | ||
If a second argument is given, that argument is the name that will | ||
be used to refer to the shortcut for future use. | ||
If no second argument is given, the high level name will be used. | ||
2) {} or {}: command to list the current shortcuts and their names. | ||
3) {} or {}: both commands to show current hop version info. | ||
4) {}: command to create a temporary shortcut to the current directory | ||
that can be jumped back to using the {} {} command. | ||
5) {} or {}: command to remove the shortcut specified by {}. | ||
6) {}: Any other first arguments given will be checked to see if it | ||
represents a valid directory/file to hop to. This input can be a named | ||
shortcut, a file/directory in the current directory, or a file/directory | ||
from previous {} commands. | ||
" |
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