change opts

This commit is contained in:
long-crypto 2024-07-21 05:48:56 +00:00 committed by GitHub
parent 2df5137e59
commit f2196bcbf1
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 2 additions and 2 deletions

View File

@ -102,7 +102,7 @@ vim.g.have_nerd_font = false
vim.opt.number = true
-- You can also add relative line numbers, to help with jumping.
-- Experiment for yourself to see if you like it!
-- vim.opt.relativenumber = true
vim.opt.relativenumber = true
-- Enable mouse mode, can be useful for resizing splits for example!
vim.opt.mouse = 'a'
@ -119,7 +119,7 @@ vim.opt.clipboard = 'unnamedplus'
vim.opt.breakindent = true
-- Save undo history
vim.opt.undofile = true
vim.opt.undofile = false
-- Case-insensitive searching UNLESS \C or one or more capital letters in the search term
vim.opt.ignorecase = true