Skip to content

Instantly share code, notes, and snippets.

@Darkside73
Darkside73 / Preferences.sublime-settings
Created February 20, 2018 16:34
sublime text base settings
{
"caret_style": "phase",
"default_line_ending": "unix",
"detect_slow_plugins": false,
"ensure_newline_at_eof_on_save": true,
"folder_exclude_patterns":
[
".git",
".svn",
".sass-cache",
@Darkside73
Darkside73 / acestream.desktop
Created June 20, 2018 13:50
ubuntu xdg-open acestream
# ~/.local/share/applications/acestream.desktop
[Desktop Entry]
Version=1.0
Name=Acestream
GenericName=Media player
Comment=Open Acestream links with VLC Media Player
Type=Application
StartupNotify=false
Exec=/snap/bin/acestreamplayer %u
TryExec=/snap/bin/acestreamplayer
@Darkside73
Darkside73 / DateRangePicker.vue
Last active February 26, 2020 12:31
Vuetify DateRangePicker (obsolete since Vuetify has built-in range picker)
<template>
<v-date-picker
class="date-range-picker" :value="value" @input="onInput"
color="light-blue" event-color="light-blue lighten-4 date-in-range" :events="selectedRange"
:allowed-dates="allowedDates" no-title multiple
>
<slot></slot>
</v-date-picker>
</template>
@Darkside73
Darkside73 / Default (Linux).sublime-keymap
Created August 27, 2020 10:36
Sublime Text 3 key bindings for Emmet 2
[
{
"keys": ["ctrl+shift+'"],
"command": "emmet_rename_tag"
},
{
"keys": ["ctrl+shift+g"],
"command": "emmet_wrap_with_abbreviation"
},
{
@Darkside73
Darkside73 / keybindings.json
Created July 25, 2023 09:29
vscode keybindings
[
{
"key": "ctrl+cmd+p",
"command": "workbench.action.quickOpenRecent"
},
{
"key": "alt+cmd+r",
"command": "-revealFileInOS",
"when": "!editorFocus"
},