diff options
author | tdback <tyler@tdback.net> | 2025-01-16 19:57:13 -0500 |
---|---|---|
committer | tdback <tyler@tdback.net> | 2025-01-16 19:57:13 -0500 |
commit | 88017f5a874478dd82f306a5df88c38a8d06fcb6 (patch) | |
tree | 8806c58c4f21bb6a56d8530df8a93b256d44b4f3 /users/tdback/modules/ncmpcpp | |
parent | 01d012473d4311d4f4e5a0831d912bc4b8c61639 (diff) |
fix: format flake with `nixfmt-rfc-style`
Diffstat (limited to 'users/tdback/modules/ncmpcpp')
-rw-r--r-- | users/tdback/modules/ncmpcpp/default.nix | 139 |
1 files changed, 114 insertions, 25 deletions
diff --git a/users/tdback/modules/ncmpcpp/default.nix b/users/tdback/modules/ncmpcpp/default.nix index 970dba3..839ce34 100644 --- a/users/tdback/modules/ncmpcpp/default.nix +++ b/users/tdback/modules/ncmpcpp/default.nix @@ -35,31 +35,120 @@ }; bindings = [ - { key = "j"; command = "scroll_down"; } - { key = "k"; command = "scroll_up"; } - { key = "h"; command = [ "previous_column" "jump_to_parent_directory" ]; } - { key = "l"; command = [ "next_column" "enter_directory" "run_action" "play_item" ]; } - { key = "u"; command = "page_up"; } - { key = "d"; command = "page_down"; } - { key = "ctrl-u"; command = "page_up"; } - { key = "ctrl-d"; command = "page_down"; } - { key = "g"; command = "move_home"; } - { key = "G"; command = "move_end"; } - { key = "n"; command = "next_found_item"; } - { key = "N"; command = "previous_found_item"; } - { key = "J"; command = "move_sort_order_down"; } - { key = "K"; command = "move_sort_order_up"; } - { key = "f"; command = [ "show_browser" "change_browse_mode" ]; } - { key = "s"; command = [ "reset_search_engine" "show_search_engine" ]; } - { key = "m"; command = "toggle_media_library_columns_mode"; } - { key = "x"; command = "delete_playlist_items"; } - { key = "U"; command = "update_database"; } - { key = "P"; command = "show_playlist"; } - { key = "t"; command = "show_tag_editor"; } - { key = "v"; command = "show_visualizer"; } - { key = "."; command = "show_lyrics"; } - { key = "+"; command = "show_clock"; } - { key = "="; command = "volume_up"; } + { + key = "j"; + command = "scroll_down"; + } + { + key = "k"; + command = "scroll_up"; + } + { + key = "h"; + command = [ + "previous_column" + "jump_to_parent_directory" + ]; + } + { + key = "l"; + command = [ + "next_column" + "enter_directory" + "run_action" + "play_item" + ]; + } + { + key = "u"; + command = "page_up"; + } + { + key = "d"; + command = "page_down"; + } + { + key = "ctrl-u"; + command = "page_up"; + } + { + key = "ctrl-d"; + command = "page_down"; + } + { + key = "g"; + command = "move_home"; + } + { + key = "G"; + command = "move_end"; + } + { + key = "n"; + command = "next_found_item"; + } + { + key = "N"; + command = "previous_found_item"; + } + { + key = "J"; + command = "move_sort_order_down"; + } + { + key = "K"; + command = "move_sort_order_up"; + } + { + key = "f"; + command = [ + "show_browser" + "change_browse_mode" + ]; + } + { + key = "s"; + command = [ + "reset_search_engine" + "show_search_engine" + ]; + } + { + key = "m"; + command = "toggle_media_library_columns_mode"; + } + { + key = "x"; + command = "delete_playlist_items"; + } + { + key = "U"; + command = "update_database"; + } + { + key = "P"; + command = "show_playlist"; + } + { + key = "t"; + command = "show_tag_editor"; + } + { + key = "v"; + command = "show_visualizer"; + } + { + key = "."; + command = "show_lyrics"; + } + { + key = "+"; + command = "show_clock"; + } + { + key = "="; + command = "volume_up"; + } ]; }; } |