Advertisement
Virajsinh

Sublime Settings

Dec 10th, 2019 (edited)
297
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
JSON 4.02 KB | None | 0 0
  1. Sublime Useful Tips And Tricks
  2. -----------------------------------------
  3. Preferences => Settings => User
  4. -----------------------------------------
  5. "highlight_modified_tabs": true,
  6. "update_check": false,
  7. "save_on_focus_lost": true
  8. -----------------------------------------
  9. Preferences => Key Bindings => User
  10. -----------------------------------------
  11. [
  12.     //////////////////////////////////////
  13.     // perfect coding view (cmd+shift+r) //
  14.     ///////////////////////////////////////
  15.     { "keys": ["super+shift+r"],  "command": "reindent" },
  16.     /////////////////////////////////////////////
  17.     // perfect Paste Code View From inter Net  //
  18.     /////////////////////////////////////////////
  19.     { "keys": ["super+v"], "command": "paste_and_indent" },
  20.     { "keys": ["super+shift+v"], "command": "paste" },
  21.      
  22.     /////////////////////////////////
  23.     // console.log shortcut create //
  24.     /////////////////////////////////
  25.     {
  26.         "keys": ["ctrl+shift+l"],
  27.         "command": "insert_snippet",
  28.         "args": {
  29.             "contents": "console.log('=== $SELECTION $TM_FILENAME [$TM_LINE_NUMBER] ===', $SELECTION ${0});"
  30.         },
  31.         "context": {
  32.             "key": "selector",
  33.             "operator": "equal",
  34.             "operand": "source.js",
  35.             "match_all": true
  36.         }
  37.     },
  38.     // Insert DataTime
  39.     { "keys": ["f5"], "command": "insert_datetime"},
  40.     // Open File Location
  41.     {
  42.         "keys": ["ctrl+alt+e"],
  43.         "command": "open_dir",
  44.         "args": {"dir": "$file_path", "file": "$file_name"}
  45.     },
  46.     { "keys": ["ctrl+alt+s"], "command": "reveal_in_side_bar" },
  47.     // Title Case
  48.     { "keys": ["ctrl+shift+c"], "command": "title_case" },
  49.     // Clipboard Manager Copy Paste Command
  50.     { "keys": ["ctrl+x"], "command": "clipboard_manager_cut" },
  51.     { "keys": ["ctrl+c"], "command": "clipboard_manager_copy" },
  52.     { "keys": ["ctrl+v"], "command": "clipboard_manager_paste", "args": { "indent": true } },
  53.     { "keys": ["ctrl+alt+shift+v"], "command": "clipboard_manager_choose_and_paste" },
  54.     { "keys": ["ctrl+shift+'"], "command": "change_quotes" },
  55.     { "keys": ["ctrl+alt+f"], "command": "find_next_conflict" },
  56.     { "keys": ["ctrl+alt+o"], "command": "keep", "args": { "keep": "ours" } },
  57.     { "keys": ["ctrl+alt+t"], "command": "keep", "args": { "keep": "theirs" } },
  58.     { "keys": ["ctrl+alt+a"], "command": "keep", "args": { "keep": "ancestor" } },
  59.     { "keys": ["ctrl+alt+c"], "command": "list_conflict_files" },
  60.     // Delete Empty Line And Selected Code Remove Empty Lines
  61.     {
  62.         "keys": ["ctrl+shift+q"], "command": "delete_empty_lines",
  63.     },
  64.     {
  65.         "keys": ["super+alt+q"],
  66.         "command": "doxy_comment_nearest_entity",
  67.         "args": {},
  68.         "context": [
  69.             { "key": "selector", "operator": "equal", "operand": "source, text.html.cshtml, text.jade", "match_all": true }
  70.         ]
  71.     }
  72. ]
  73. -----------------------------------------
  74. Preferences => Settings => User (Default User Settings)
  75. -----------------------------------------
  76.  
  77. {
  78.     "color_scheme": "Monokai.sublime-color-scheme",
  79.     "font_size": 13,
  80.     "ignored_packages":
  81.     [
  82.         "Vintage"
  83.     ],
  84. }
  85. ---------------------------------------------
  86. Plug-in Name Usefull
  87. ---------------------------------------------
  88. 1. "A File Icon"
  89. 2. "Alignment"
  90. 3. "All Autocomplete"
  91. 4. "Atomizr"
  92. 5. "Better CoffeeScript"
  93. 6. "BlameHighlighter"
  94. 7. "Bootstrap 4 Autocomplete"
  95. 8. "Bootstrap 4 Snippets"
  96. 9. "BracketHighlighter"
  97. 10. "ChangeQuotes"
  98. 11. "Clipboard Manager"
  99. 12. "CodeIgniter Snippets"
  100. 13. "Compare Side-By-Side"
  101. 14. "DiffTabs"
  102. 15. "DocBlockr"
  103. 16. "DoxyDoxygen"
  104. 17. "Emmet"
  105. 18. "FileDiffs"
  106. 19. "Git Conflict Resolver"
  107. 20. "GitGutter"
  108. 21. "HTML Nest Comments"
  109. 22. "HTML Snippets"
  110. 23. "jQuery"
  111. 24. "jQuery Snippets pack"
  112. 25. "JSON Key-Value"
  113. 26. "jsonnet syntax"
  114. 27. "Minifier"
  115. 28. "MySQL Snippets"
  116. 29. "Package Control"
  117. 30. "Pretty JSON"
  118. 31. "React Create Component"
  119. 32. "ReactJS"
  120. 33. "SideBarEnhancements"
  121. 34. "Tabnine"
  122. 35. "Trimmer"
  123. 36. "Underliner"
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement