Advertisement
LorenzoPagliara

settings

Oct 4th, 2023 (edited)
83
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
JSON 1.17 KB | None | 0 0
  1. {
  2.     "ros.distro": "noetic",
  3.     "editor.rulers": [
  4.         {
  5.             "column": 80,
  6.             "color": "#00dd00"
  7.         },
  8.         {
  9.             "column": 70,
  10.             "color": "#eeff073d"
  11.         },
  12.         {
  13.             "column": 120,
  14.             "color": "#da0505"
  15.         }
  16.     ],
  17.     "editor.renderWhitespace": "all",
  18.     "editor.formatOnPaste": false,
  19.     "editor.formatOnSave": false,
  20.     "files.trimTrailingWhitespace": false,
  21.     "C_Cpp.clang_format_fallbackStyle": "Google",
  22.     "C_Cpp.formatting": "clangFormat",
  23.     "C_Cpp.clang_format_path": "/usr/bin/clang-format",
  24.     "C_Cpp.clang_format_style": "file:${workspaceFolder}/.clang-format",
  25.     "markdownlint.config": {
  26.         "MD007": {
  27.             "indent": 4
  28.         },
  29.         "MD033": {
  30.             "allowed_elements": [
  31.                 "sub"
  32.             ]
  33.         },
  34.     },
  35.     "python.autoComplete.extraPaths": [
  36.         "~/catkin_ws/devel/lib/python3/dist-packages",
  37.         "/opt/ros/noetic/lib/python3/dist-packages"
  38.     ],
  39.     "python.analysis.extraPaths": [
  40.         "~/catkin_ws/devel/lib/python3/dist-packages",
  41.         "/opt/ros/noetic/lib/python3/dist-packages"
  42.     ],
  43. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement