This commit is contained in:
sadanslargehole 2024-04-18 14:22:10 -04:00
parent f18543cfa7
commit c5b2c0b584
No known key found for this signature in database
GPG key ID: B2E2F4A5161A7800
6 changed files with 73 additions and 21 deletions

View file

@ -6,4 +6,11 @@ vim.opt.shiftround = true
vim.opt.shiftwidth = 4
vim.opt.smartcase = true
vim.opt.ignorecase = true
vim.opt.scrolloff = 4
vim.opt.scrolloff = 6
vim.api.nvim_create_autocmd({ "BufEnter" }, {
callback = function()
package.loaded.presence:update()
end,
})