update(neovim): enable exrc

This commit is contained in:
qwjyh 2025-06-18 15:19:13 +09:00
parent f4cd9ff346
commit fdbe00d7db

View file

@ -346,6 +346,7 @@ vim.o.errorbells = true
vim.opt.undofile = true -- Save undo history
vim.o.completeopt = 'menuone,noselect' -- for better completion experience
vim.o.termguicolors = true
vim.o.exrc = true
vim.keymap.set('n', 'H', '<cmd>tabp<cr>', { desc = 'tab previous' })
vim.keymap.set('n', 'L', '<cmd>tabn<cr>', { desc = 'tab next' })