Introduction
The way that Hike works can be configured using a configuration file. This section will describe what can be configured and how.
Note
At the moment some configuration can be done via Hike's UI; other things require that you edit the configuration file using your preferred text editor. Eventually I aim to make everything that can be configured configurable within Hike itself.
The location of the configuration file will depend on how your system is
configured; but by default it is looked for in
$XDG_CONFIG_HOME
,
in a hike
subdirectory. Mostly this will translate to the file being
called ~/.config/hike/configuration.json
.
Command line location
By default Hike's command line appears at the bottom of the screen, above
the footer of the application. It can be moved to the top of the screen,
below the application header, with the Change Command Line Location
command (ChangeCommandLineLocation
, bound to
Ctrl+Up by default).
Keyboard bindings
Hike allows for a degree of configuration of its keyboard bindings; providing a method for setting up replacement bindings for the commands that appear in the command palette.
Bindable commands
The following commands can have their keyboard bindings set:
Backward
- Move backward through history- Default:
ctrl+left_square_bracket
- Default:
BookmarkLocation
- Bookmark the current location- Default:
ctrl+b
- Default:
ChangeCommandLineLocation
- Swap the position of the command line between top and bottom- Default:
ctrl+up, ctrl+down
- Default:
ChangeNavigationSide
- Change which side the navigation panel lives on- Default:
shift+f2
- Default:
ChangeTheme
- Change the application's theme- Default:
f9
- Default:
CopyLocationToClipboard
- Copy the location to the clipboard- Default:
f4
- Default:
CopyMarkdownToClipboard
- Copy the Markdown source to the clipboard- Default:
shift+f4
- Default:
Edit
- Edit the current markdown document- Default:
f5
- Default:
Forward
- Move forward through history- Default:
ctrl+right_square_bracket
- Default:
Help
- Show help for and information about the application- Default:
f1, ?
- Default:
JumpToBookmarks
- Jump to the bookmarks in the navigation panel- Default:
ctrl+o
- Default:
JumpToCommandLine
- Jump to the command line- Default:
/
- Default:
JumpToDocument
- Jump to the markdown document- Default:
ctrl+slash, ctrl+g
- Default:
JumpToHistory
- Jump to the history in the navigation panel- Default:
ctrl+y
- Default:
JumpToLocalBrowser
- Jump to the local filesystem browser in the navigation panel- Default:
ctrl+l
- Default:
JumpToTableOfContents
- Jump to the table of contents in the navigation panel- Default:
ctrl+t
- Default:
Quit
- Quit the application- Default:
f10, ctrl+q
- Default:
Reload
- Reload the current document- Default:
ctrl+r
- Default:
SaveCopy
- Save a copy of the current document- Default:
ctrl+s
- Default:
SearchBookmarks
- Search the bookmarks- Default:
f3
- Default:
ToggleNavigation
- Show/hide the navigation panel- Default:
f2
- Default:
Changing a binding
If you wish to change the binding for a command, edit the configuration file
and add the binding to the bindings
value. For example, if you wanted to
change the binding used to create a bookmark, changing it from
ctrl+b to F6, and you also wanted to use
Shift+F6 to jump to the bookmarks, you would set
bindings
to this:
"bindings": {
"BookmarkLocation": "f6",
"JumpToBookmarks": "shift+f6"
}
The designations used for keys is based on the internal system used by
Textual; as such its caveats about what
works where
apply.
The main modifier keys to know are shift
, ctrl
, alt
, meta
, super
and hyper
; letter keys are their own letters; shifted letter keys are
their upper-case versions; function keys are simply f1,
f2, etc; symbol keys (the likes of #
, @
, *
, etc...)
generally use a name (number_sign
, at
, asterisk
).
Tip
If you want to test and discover all of the key names and combiantions
that will work you may want to install
textual-dev
and use the
textual keys
command.
If you need help with keyboard bindings please feel free to ask.
Local file system start location
By default Hike's local file system browser (the tree that appears in the navigation panel) will always start out browsing the user's home directory. If you prefer that it starts viewing somewhere else, you can change this value in the configuration file.
"local_start_location": "~",
For example, if you wanted it to always start with the current directory, you could change it to this:
"local_start_location": ".",
Main forge branches
When Hike looks for the README file of a repository in a git forge, by
default it first looks in the branch main
and then as a backup in
master
. If you wish to change this you can edit the list in the
configuration file.
For example, if you wanted to add staging
and production
to the list of
branches checked, you could change this:
"main_branches": [
"main",
"master"
],
to be this:
"main_branches": [
"main",
"master",
"staging",
"production"
],
Markdown content types
When deciding what remote content is likely a Markdown document Hike considers the following content types as good candidates:
- text/plain
- text/markdown
- text/x-markdown
If you wish to change this list you can edit this option in the configuration file and add to the list:
"markdown_content_types": [
"text/plain",
"text/markdown",
"text/x-markdown"
],
Markdown file extensions
By default Hike considers files with either a .md
or a .markdown
extension to be Markdown files. If you wish to change that you can edit this
option in the configuration file.
For example, if you also wanted to recognise files with the .mkdn
extension as Markdown files, you could change this:
"markdown_extensions": [
".md",
".markdown"
],
to be this:
"markdown_extensions": [
".md",
".markdown",
".mkdn"
],
Navigation panel
Visibility
You can show or hide the navigation panel. This can be done in Hike with the
Toggle Navigation
(ToggleNavigation
) command
(bound to F2 by default).
Tip
You can force nagivation visible or hidden via the command line. Note that this also configures the visability of the navigation panel for future runs of Hike.
Here is Hike with the navigation panel visible:
and with it hidden:
Location
When visible, the navigation panel can be located on the left
or the right of the screen; this is toggled using the Change Navigation
Side
command (ChangeNavigationSide
) which is found
to Shift+F2 by default.
Here is Hike with the navigation panel visible on the right:
Obsidian vaults location
The command for quickly browsing Obsidian vaults in
the local filesystem will, by default, look in ~/Library/Mobile
Documents/iCloud~md~obsidian/Documents
.
Note
I use Obsidian in the Apple ecosystem and use iCloud to sync my vaults; hence this default.
If you wish to change this to a default that makes sense for you, edit this setting in the configuration file:
"obsidian_vaults": "~/Library/Mobile Documents/iCloud~md~obsidian/Documents",
Theme
Hike has a number of themes available. You can select a theme using the
Change Theme
(ChangeTheme
) command (bound to F9 by default).
The available themes include:
- catppuccin-latte
- catppuccin-mocha
- dracula
- flexoki
- gruvbox
- monokai
- nord
- solarized-light
- textual-dark
- textual-light
- tokyo-night
Tip
You can also set the theme via the command line. This can be useful if you want to ensure that Hike runs up with a specific theme. Note that this also configures the theme for future runs of Hike.
Here's a sample of some of the themes: