Fix leader binding and NF

This commit is contained in:
smashblu 2024-05-15 19:17:35 -07:00
parent 62ee2aebc3
commit 5e08791190
1 changed files with 4 additions and 7 deletions

View File

@ -21,20 +21,17 @@
===================================================================== =====================================================================
-- [[ Setting options ]]
-- See `:help vim.opt`
-- Set <space> as the leader key -- Set <space> as the leader key
-- See `:help mapleader`
-- NOTE: Must happen before plugins are loaded (otherwise wrong leader will be used)
vim.g.mapleader = ' ' vim.g.mapleader = ' '
vim.g.maplocalleader = ' ' vim.g.maplocalleader = ' '
-- Set to true if you have a Nerd Font installed and selected in the terminal -- Set to true if you have a Nerd Font installed and selected in the terminal
vim.g.have_nerd_font = true vim.g.have_nerd_font = true
-- [[ Setting options ]]
-- See `:help vim.opt`
-- NOTE: You can change these options as you wish!
-- For more options, you can see `:help option-list`
-- Make line numbers default -- Make line numbers default
vim.opt.number = true vim.opt.number = true
-- You can also add relative line numbers, to help with jumping. -- You can also add relative line numbers, to help with jumping.