Skip to content

Instantly share code, notes, and snippets.

View darianmorat's full-sized avatar

Darian Toledo darianmorat

  • Teleperformance
  • Neiva, CO
  • 23:34 (UTC -05:00)
  • LinkedIn in/darianmorat
View GitHub Profile
@darianmorat
darianmorat / config.yaml
Last active April 12, 2024 00:04
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
@darianmorat
darianmorat / main.ahk
Last active April 27, 2024 16:43
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 / keybindings.json
Last active March 14, 2024 18:59
Visual Studio Code
[
// MAIN COMMANDS
{
"key": "ctrl+p",
"command": "workbench.action.showCommands"
},
{
"key": "ctrl+shift+p",
"command": "workbench.action.openRecent"
},
@darianmorat
darianmorat / settings.json
Last active April 27, 2024 22:39
Visual Studio Code
{
// =================
// VIM CONFIGURATION
// =================
"editor.lineNumbers": "relative",
"editor.cursorSurroundingLines": 8,
"terminal.integrated.cursorBlinking": false,
"editor.cursorBlinking": "solid",