This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"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", |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
[ | |
{ | |
"key": "cmd+o cmd+p", | |
"command": "workbench.action.showCommands" | |
}, | |
{ | |
"key": "cmd+x", | |
"command": "workbench.view.extensions" | |
}, | |
{ |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"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, |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
let mapleader=" " | |
noremap j h | |
noremap k j | |
noremap l k | |
noremap ; l | |
noremap ' ; | |
syntax on |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<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> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
[ | |
{ "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": [ |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"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, |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Show hidden characters
[ | |
{ "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"}, |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# 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" |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
" 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 |
NewerOlder