Thanks to visit codestin.com
Credit goes to gist.github.com

Skip to content

Instantly share code, notes, and snippets.

View ianpatricck's full-sized avatar
🏠
Working from home

Ian Patrick ianpatricck

🏠
Working from home
View GitHub Profile
@ianpatricck
ianpatricck / init.lua
Created May 31, 2026 17:05
Neovim Minimal Config
vim.g.mapleader = " "
vim.opt.number = true
vim.opt.tabstop = 4
vim.opt.softtabstop = 4
vim.opt.shiftwidth = 4
vim.opt.expandtab = true
vim.opt.guicursor = "n-v-i-c:block"
vim.opt.wrap = false
vim.opt.mouse = "a"