nvim/lua/sets.lua

20 lines
400 B
Lua
Raw Normal View History

2024-03-12 01:28:22 -04:00
vim.opt.rnu = true
vim.opt.expandtab = true
vim.opt.tabstop = 4
vim.opt.smarttab = true
vim.opt.shiftround = true
vim.opt.shiftwidth = 4
vim.opt.smartcase = true
vim.opt.ignorecase = true
2024-04-18 14:22:10 -04:00
vim.opt.scrolloff = 6
2024-11-17 22:19:14 -05:00
vim.opt.sloc = "statusline"
-- eregex.vim
vim.g.eregex_default_enable = 1
2024-04-18 14:22:10 -04:00
vim.api.nvim_create_autocmd({ "BufEnter" }, {
callback = function()
package.loaded.presence:update()
end,
})