Merge branch 'master' into wsl-config

This commit is contained in:
Grayson Butcher 2025-09-24 11:28:58 -06:00 committed by GitHub
commit 4130e78342
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 1 additions and 4 deletions

View File

@ -101,11 +101,7 @@ vim.g.have_nerd_font = false
vim.o.number = true
-- You can also add relative line numbers, to help with jumping.
-- Experiment for yourself to see if you like it!
<<<<<<< HEAD
vim.opt.relativenumber = true
=======
-- vim.o.relativenumber = true
>>>>>>> 3338d3920620861f8313a2745fd5d2be39f39534
-- Enable mouse mode, can be useful for resizing splits for example!
vim.o.mouse = 'a'
@ -210,6 +206,7 @@ vim.keymap.set('i', '<Esc>', function()
return '<Esc>'
end, { expr = true, silent = true })
-- if performing an operation that would fail due to unsaved changes in the buffer (like `:q`),
-- instead raise a dialog asking if you wish to save the current file(s)
-- See `:help 'confirm'`