Skip to content

Instantly share code, notes, and snippets.

View Keshav13142's full-sized avatar
🚀

Keshav S Keshav13142

🚀
View GitHub Profile
@Keshav13142
Keshav13142 / .ideavimrc
Created June 6, 2024 06:22
Idea Vim config
"source ~/.vimrc
" Find more examples here: https://jb.gg/share-ideavimrc
let mapleader=" "
" Don't use Ex mode, use Q for formatting.
map Q gq
set number relativenumber
set clipboard+=unnamed
@Keshav13142
Keshav13142 / git-demo.md
Last active April 4, 2024 10:28
Git basics

Git basics

  • Setup Git

    • Install git
    • Configure name, email for commits
       git config --global user.name "Your name"
       git config --global user.email name@example.com
@Keshav13142
Keshav13142 / vimium.json
Last active August 20, 2023 12:30
vimium config
{
"settingsVersion": "1.67.7",
"exclusionRules": [
{
"pattern": "https?://mail.google.com/*",
"passKeys": ""
},
{
"pattern": "https?://www.google.com/*",
"passKeys": "/"
@Keshav13142
Keshav13142 / .obsidian.vimrc
Last active June 3, 2024 05:13
obsidian-vimrc
" Have j and k navigate visual lines rather than logical ones
nmap j gj
nmap k gk
" Go to beginning/end of line
nmap gh ^
nmap gl $
" Cycle between tabs
exmap tabprev obcommand workspace:previous-tab
@Keshav13142
Keshav13142 / yt_enhancer.json
Last active February 3, 2024 17:25
YT enhancer config
{
"version": "2.0.122",
"settings": {
"blur": 0,
"brightness": 100,
"contrast": 100,
"grayscale": 0,
"huerotate": 0,
"invert": 0,
"saturate": 100,