Skip to content

Instantly share code, notes, and snippets.

@wkurth-dev
wkurth-dev / init.lua
Created August 11, 2025 06:23
nevim config for mac
-- ~/.config/nvim/init.lua
-- Modern Neovim configuration following best practices
-- ============================================================================
-- LEADER KEYS - Set these first, before any plugins or mappings
-- ============================================================================
vim.g.mapleader = " " -- Use space as leader key
vim.g.maplocalleader = " " -- Use space as local leader too
-- ============================================================================