diff options
Diffstat (limited to '.config')
| -rw-r--r-- | .config/micro/bindings.json | 13 | ||||
| -rw-r--r-- | .config/micro/settings.json | 10 |
2 files changed, 23 insertions, 0 deletions
diff --git a/.config/micro/bindings.json b/.config/micro/bindings.json new file mode 100644 index 0000000..5a7992e --- /dev/null +++ b/.config/micro/bindings.json @@ -0,0 +1,13 @@ +{ + "Alt-/": "lua:comment.comment", + "Alt-u": "command:upper", + "Alt-l": "command:lower", + "Ctrl-Down": "SpawnMultiCursorDown", + "Ctrl-MouseWheelDown": "CursorDown", + "Ctrl-MouseWheelUp": "CursorUp", + "Ctrl-Up": "SpawnMultiCursorUp", + //"CtrlA": "StartOfTextToggle", + "ShiftPageUp": "SelectPageUp", + "ShiftPageDown": "SelectPageDown", + "CtrlUnderscore": "lua:comment.comment" +} diff --git a/.config/micro/settings.json b/.config/micro/settings.json new file mode 100644 index 0000000..40123c2 --- /dev/null +++ b/.config/micro/settings.json @@ -0,0 +1,10 @@ +{ + "autoclose": false, + "autosu": true, + "basename": true, + "colorscheme": "solarized", + "mkparents": true, + "parsecursor": true, + "softwrap": true, + "tabstospaces": true +} |
