my dotfiles
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

feat(meow): add initial configuration file with default editor settings

theMackabu 9918413d 6548ab39

+43
+43
meow/config.toml
··· 1 + # This is an example configuration file for meow editor. 2 + # Uncomment and modify the values as needed. 3 + 4 + # Disable mouse interaction (default: false) 5 + # disable_mouse_interaction = false 6 + 7 + # Set tab width (default: 4) 8 + # tab_width = 4 9 + 10 + # Set theme (default: none) 11 + # theme = "monokai" 12 + 13 + # Use relative line numbers (default: false) 14 + # relative_line_numbers = false 15 + 16 + # Keybinds configuration 17 + # Format: "Modifier+Key" (e.g., "Ctrl+S", "Alt+X") 18 + # Available modifiers: Ctrl, Alt, Shift 19 + # For special keys, use their names (e.g., "Enter", "Backspace", "Tab") 20 + # [keybinds] 21 + # quit = "Ctrl+Q" 22 + # save = "Ctrl+S" 23 + # discard_changes = "Ctrl+A" 24 + # undo = "Ctrl+Z" 25 + # redo = "Ctrl+Y" 26 + # copy = "Ctrl+C" 27 + # paste = "Ctrl+V" 28 + # cut = "Ctrl+X" 29 + # system_copy = "Alt+C" 30 + # system_paste = "Alt+V" 31 + # system_cut = "Alt+X" 32 + # move_up = "Up" 33 + # move_down = "Down" 34 + # move_left = "Left" 35 + # move_right = "Right" 36 + # move_word_left = "Ctrl+Left" 37 + # move_word_right = "Ctrl+Right" 38 + # move_to_start_of_line = "Home" 39 + # move_to_end_of_line = "End" 40 + # page_up = "PageUp" 41 + # page_down = "PageDown" 42 + # half_page_up = "Ctrl+U" 43 + # half_page_down = "Ctrl+D"