various plugin changes to make notes work

This commit is contained in:
Jack Koskie 2024-07-27 14:53:18 -04:00
parent d5aaa05aca
commit 06c5d2415e
11 changed files with 131 additions and 56 deletions

View file

@ -69,6 +69,8 @@ vim.opt.scrolloff = 10
-- [[ Basic Keymaps ]]
-- See `:help vim.keymap.set()`
require 'custom.keymaps'
-- Set highlight on search, but clear on pressing <Esc> in normal mode
vim.opt.hlsearch = true
vim.keymap.set('n', '<Esc>', '<cmd>nohlsearch<CR>')