Skip to content

Instantly share code, notes, and snippets.

View igorbabko's full-sized avatar
🇺🇦

Igor Babko igorbabko

🇺🇦
View GitHub Profile
@igorbabko
igorbabko / settings.json
Created April 23, 2024 11:13
VS Code Settings [2024-04-23]
{
"workbench.iconTheme": "material-icon-theme",
"workbench.colorTheme": "Aura Dracula Spirit (Soft)",
"workbench.activityBar.location": "hidden",
"workbench.tree.enableStickyScroll": false,
"workbench.tree.renderIndentGuides": "none",
"workbench.sideBar.location": "right",
"workbench.editor.showTabs": "single",
"workbench.layoutControl.enabled": false,
"workbench.startupEditor": "none",
@igorbabko
igorbabko / keybindings.json
Created December 23, 2023 10:36
VS Code Key Bindings
[
{
"key": "cmd+o cmd+p",
"command": "workbench.action.showCommands"
},
{
"key": "cmd+x",
"command": "workbench.view.extensions"
},
{
@igorbabko
igorbabko / settings.json
Created December 23, 2023 10:24
VS Code Settings
{
"window.zoomLevel": 2,
"workbench.colorTheme": "Aura Dracula Spirit (Soft)",
"workbench.iconTheme": "material-icon-theme",
"material-icon-theme.hidesExplorerArrows": true,
"workbench.tree.renderIndentGuides": "none",
"workbench.sideBar.location": "right",
"workbench.activityBar.visible": false,
"workbench.statusBar.visible": false,
"workbench.editor.showTabs": false,
@igorbabko
igorbabko / init.vim
Created May 28, 2022 21:39
Neovim config for VSCode Neovim extension
let mapleader=" "
noremap j h
noremap k j
noremap l k
noremap ; l
noremap ' ;
syntax on
@igorbabko
igorbabko / EditCustomPage.vue
Created August 13, 2017 16:47
Tricky problem
<template>
<div class="custom-pages-wrapper" v-if="currentCustomPage">
<div class="top-action-bar flex-between">
<div>
<div class="title-block">
<i class="icon-pencil"></i>
<input type="text" placeholder="page title" v-model="pageTitle">
</div>
</div>
<div>
[
{ "keys": ["super+u"], "command": "find_use" },
{ "keys": ["alt+p"], "command": "insert_php_constructor_property" },
{ "keys": ["ctrl+t"], "command": "run_all_phpunit_tests" },
{ "keys": ["ctrl+d"], "command": "run_phpunit_tests_in_dir" },
{ "keys": ["super+t"], "command": "run_single_phpunit_test" },
{ "keys": [",", "w"], "command": "save",
"context": [
{
"bold_folder_labels": true,
"color_scheme": "Packages/Material Theme/schemes/Material-Theme-Palenight.tmTheme",
"draw_white_space": "none",
"font_face": "Fira Code Light",
"font_size": 14,
"highlight_line": true,
"line_numbers": false,
// "margin": 10,
"highlight_modified_tabs": true,
@igorbabko
igorbabko / Default (OSX).sublime-keymap
Created June 24, 2017 07:53 — forked from gig3m/Default (OSX).sublime-keymap
Sublime Text 2 Vintage Lefty Remap (ijkl movement)
[
{ "keys": ["h"], "command": "enter_insert_mode",
"context":
[
{"key": "setting.command_mode"},
{"key": "selection_empty"}
]
},
{ "keys": ["H"], "command": "enter_insert_mode", "args":
{"insert_command": "vi_move_to_first_non_white_space_character"},
# Git aliases
alias gs="git status"
alias ga="git add"
alias gaa="git add ."
alias gc="git commit"
alias gp="git push"
alias gpl="git pull"
alias gcm="git commit -m"
alias gl="git log"
@igorbabko
igorbabko / .vimrc
Last active November 14, 2016 11:31
" we want the latest VIM settings/options
"let macvim_skip_colorscheme = 1
let mapleader = ',' " setup leader key ( \ - by default )
syntax enable " enable syntax highlighting
"colorscheme atom-dark " setup colorscheme
set noerrorbells visualbell t_vb= " remove damn bell
set complete=.,w,b,u " set our desired autocompletion matching