Skip to content

Instantly share code, notes, and snippets.

@reisub
Created September 12, 2021 20:34
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save reisub/b23f01858edd52374268a30b595cac63 to your computer and use it in GitHub Desktop.
Save reisub/b23f01858edd52374268a30b595cac63 to your computer and use it in GitHub Desktop.
Sublime Text
[
// swap the keybindings for paste and paste_and_indent
{ "keys": ["super+v"], "command": "paste_and_indent" },
{ "keys": ["super+shift+v"], "command": "paste" }
]
{
"bootstrapped": true,
"in_process_packages":
[
],
"installed_packages":
[
"Color Highlight",
"Dockerfile Syntax Highlighting",
"ElixirDocs",
"ElixirSyntax",
"LSP",
"LSP-elixir",
"LSP-json",
"Package Control",
"SideBarEnhancements",
"Tailwind CSS Autocomplete",
"Tailwind CSS Docs",
],
}
// Settings in here override those in "Default/Preferences.sublime-settings",
// and are overridden in turn by syntax-specific settings.
{
"font_face": "JetBrains Mono",
"font_size": 14,
// The number of spaces a tab is considered equal to
"tab_size": 2,
// Set to true to insert spaces when tab is pressed
"translate_tabs_to_spaces": true,
"draw_white_space": ["selection", "trailing", "isolated"],
"trim_trailing_white_space_on_save": "all",
// Set to true to ensure the last line of the file ends in a newline
// character when saving
"ensure_newline_at_eof_on_save": true,
// Set to true to automatically save files when switching to a different file
// or application
"save_on_focus_lost": true,
// Display file encoding in the status bar
"show_encoding": true,
// Display line endings in the status bar
"show_line_endings": true,
"hardware_acceleration": "opengl",
"ignored_packages":
[
"Vintage",
],
"theme": "Adaptive.sublime-theme",
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment