Skip to content

Instantly share code, notes, and snippets.

View Yagasaki7K's full-sized avatar
💭
Looking for knowledge

葛城矢ヶ崎 × 鬼渋谷 Yagasaki7K

💭
Looking for knowledge
View GitHub Profile
@Yagasaki7K
Yagasaki7K / keybindings.json
Created February 1, 2023 14:17
vscode-keybindings
// Place your key bindings in this file to override the defaultsauto[]
// C:\Users\Anderson Marlon\AppData\Roaming\Code\User
[
{
"key": "ctrl+shift+d",
"command": "editor.action.copyLinesDownAction",
"when": "editorTextFocus && !editorReadonly"
}
]
@Yagasaki7K
Yagasaki7K / zshrc
Last active January 7, 2023 15:31
Oh-my-zsh config
# If you come from bash you might have to change your $PATH.
export PATH=$HOME/bin:/usr/local/bin:$PATH
# Path to your oh-my-zsh installation.
export ZSH="$HOME/.oh-my-zsh"
# Set name of the theme to load --- if set to "random", it will
# load a random theme each time oh-my-zsh is loaded, in which case,
# to know which specific one was loaded, run: echo $RANDOM_THEME
# See https://github.com/ohmyzsh/ohmyzsh/wiki/Themes
@Yagasaki7K
Yagasaki7K / windows-settings.json
Last active December 1, 2023 17:12
Terminal Windows
{
"$help": "https://aka.ms/terminal-documentation",
"$schema": "https://aka.ms/terminal-profiles-schema",
"actions": [
{
"command": {
"action": "copy",
"singleLine": false
},
"keys": "ctrl+c"
@Yagasaki7K
Yagasaki7K / vscode-settings.json
Last active February 15, 2024 15:31
Visual Studio Code Config
{
// Initial Settings - dieegosf
// "workbench.colorTheme": "Min Theme",
// "workbench.iconTheme": "symbols",
// Install this plugin - https://marketplace.visualstudio.com/items?itemName=drcika.apc-extension (APC Extension)
"editor.rulers": [
120
],
// "workbench.startupEditor": "newUntitledFile",
"javascript.suggest.autoImports": true,