Skip to content

Instantly share code, notes, and snippets.

View darianmorat's full-sized avatar

Darian Toledo darianmorat

View GitHub Profile
@darianmorat
darianmorat / settings.json
Last active July 22, 2024 04:06
Visual Studio Code
{
// =================
// VIM CONFIGURATION
// =================
"editor.lineNumbers": "relative",
"editor.cursorSurroundingLines": 8,
"terminal.integrated.cursorBlinking": false,
"editor.cursorBlinking": "solid",
@darianmorat
darianmorat / keybindings.json
Last active July 21, 2024 03:41
Visual Studio Code
[
// MAIN COMMANDS
{
"key": "ctrl+p",
"command": "workbench.action.showCommands"
},
{
"key": "ctrl+shift+p",
"command": "workbench.action.openRecent"
},
@darianmorat
darianmorat / main.ahk
Last active May 4, 2024 21:42
Scripts AutoHotKey v1
#Requires AutoHotkey v1.1.33+
#SingleInstance Force ; The script will Reload if launched while already running
#NoEnv ; Recommended for performance and compatibility with future AHK releases
#KeyHistory 0 ; Ensures user privacy when debugging is not needed
SetWorkingDir %A_ScriptDir% ; Ensures a consistent starting directory
SendMode Input ; For new scripts due to its superior speed and reliability
; ====================
; ==== KEYBD MAIN ====
@darianmorat
darianmorat / config.yaml
Last active July 6, 2024 06:52
Glaze Windows Manager Configuration
general:
# Whether to automatically focus windows underneath the cursor.
focus_follows_cursor: false
# Whether to jump the cursor between windows focused by the WM.
cursor_follows_focus: false
# Whether to switch back and forth between the previously focused workspace
# when focusing the current workspace.
toggle_workspace_on_refocus: false