This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| -- ~/.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 | |
| -- ============================================================================ |