Skip to content

Instantly share code, notes, and snippets.

View manchitro's full-sized avatar
🐒
Evolving

Sazid Uddin manchitro

🐒
Evolving
  • Orion Informatics Ltd.
  • Dhaka, Bangladesh
View GitHub Profile
@manchitro
manchitro / hjkl.ahk
Last active November 2, 2024 11:41
AHK Script to remap LeftAlt+hjkl to ←↓↑→ Arrow Keys
#NoEnv ; Recommended for performance and compatibility with future AutoHotkey releases.
; #Warn ; Enable warnings to assist with detecting common errors.
SendMode Input ; Recommended for new scripts due to its superior speed and reliability.
SetWorkingDir %A_ScriptDir% ; Ensures a consistent starting directory.
global LevelFive
LevelFive = false
EnableLevelFive()
{
@manchitro
manchitro / altf4.ahk
Last active November 2, 2024 11:40
AHK Script to remap Alt+F4 behavior to Win+Q
#Q::Send {LAlt down}{F4}{LAlt Up}
@manchitro
manchitro / .vimrc-overleaf
Last active November 15, 2024 17:16
Overleaf Editor Custom VIM Keybindings
// ==UserScript==
// @name Overleaf Editor Custom VIM Keybindings
// @namespace http://tampermonkey.net/
// @version 0.1
// @match https://www.overleaf.com/project/*
// @grant none
// @description Sazid's .vimrc for overleaf
// ==/UserScript==
(function() {