update vscode nvim config

added lazy.nvim and mini.nvim (mainly just for mini.surround).
This commit is contained in:
Slayter Teal 2025-06-22 15:11:47 -05:00
parent 342255e050
commit 6674abcee8
3 changed files with 49 additions and 4 deletions

View file

@ -31,4 +31,9 @@ vim.api.nvim_create_autocmd('TextYankPost', {
-- Case-insensitive searching UNLESS \C or one or more capital letters in the search term
vim.opt.ignorecase = true
vim.opt.smartcase = true
vim.opt.smartcase = true
-- * Manage plugins here
if true then
require("vscode-plugins")
end