Update nvim config

This commit is contained in:
2026-03-11 22:28:04 -06:00
parent 954566fd69
commit bc5c8fb86c
5 changed files with 32 additions and 7 deletions

View File

@@ -11,4 +11,13 @@ vim.diagnostic.config({
-- vim.cmd 'colorscheme atom-dark-256'
vim.opt.laststatus = 0
vim.opt.showmode = false
vim.opt.smartindent = true
vim.opt.autoindent = true
vim.opt.mouse = ""
vim.api.nvim_create_autocmd("VimLeavePre", {
callback = function()
vim.cmd("LivePreview close")
end
})