added a bunch of config to try and get things closer to my doom emacs setup. still not perfect.
8 lines
322 B
Lua
8 lines
322 B
Lua
-- Autocmds are automatically loaded on the VeryLazy event
|
|
-- Default autocmds that are always set: https://github.com/LazyVim/LazyVim/blob/main/lua/lazyvim/config/autocmds.lua
|
|
-- Add any additional autocmds here
|
|
|
|
-- autocmd InsertLeave * :normal `^
|
|
|
|
vim.api.nvim_create_autocmd("InsertLeave", { command = ":normal `^" })
|