Created
December 20, 2023 14:07
-
-
Save dyipon/42b944adfbbc9698e39c306e5a3bf5c5 to your computer and use it in GitHub Desktop.
micro editor settings
This file contains hidden or 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
{ | |
"Alt-/": "lua:comment.comment", | |
"Alt-X": "lua:comment.comment", | |
"Ctrl-f": "FindLiteral", | |
"Ctrl-g": "command-edit: goto ", | |
"CtrlUnderscore": "lua:comment.comment", | |
"F6": "command-edit:gorename ", | |
"F7": "FindLiteral", | |
"F8": "CutLine", | |
"MouseRight": "Paste", | |
"ShiftPageUp": "SelectPageUp", | |
"ShiftPageDown": "SelectPageDown", | |
"\u001b[1;2A": "SelectUp", | |
"\u001b[1;2B": "SelectDown", | |
"\u001b[1;2C": "SelectRight", | |
"\u001b[1;2D": "SelectLeft", | |
"\u001b[1;3D": "WordLeft", | |
"\u001b[1;3C": "WordRight", | |
"\u001b[1;3A": "MoveLinesUp", | |
"\u001b[1;3B": "MoveLinesDown", | |
"\u001b[1;4C": "SelectWordRight", | |
"\u001b[1;4D": "SelectWordLeft", | |
"\u001b[1;5D": "StartOfLine", | |
"\u001b[1;5C": "EndOfLine", | |
"\u001b[1;6D": "SelectToStartOfLine", | |
"\u001b[1;6C": "SelectToEndOfLine", | |
"\u001b[1;5A": "CursorStart", | |
"\u001b[1;5B": "CursorEnd", | |
"\u001b[1;6A": "SelectToStart", | |
"\u001b[1;6B": "SelectToEnd" | |
} |
This file contains hidden or 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
{ | |
"autoindent": false, | |
"clipboard": "internal", | |
"hlsearch": true, | |
"ignorecase": true, | |
"prettier.autoformat": false, | |
"rmtrailingws": true, | |
"savecursor": true, | |
"saveundo": true, | |
"tabsize": 2, | |
"tabstospaces": true | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment